-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 943 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "fairmont-crypto",
"version": "1.0.0-beta-19",
"description": "True functional reactive programming for JavaScript.",
"files": [
"src/",
"lib/",
"README.md"
],
"main": "lib/index.js",
"scripts": {
"prepublish": "coffee --nodejs --harmony -o lib/ -c src/*.*coffee",
"test": "coffee --nodejs --harmony test/index.coffee",
"watch": "coffee --nodejs --harmony -o lib/ -cw src/*.*coffee",
"version": "(node_modules/.bin/json -f package.json version > VERSION)",
"tag": "(cat VERSION | xargs -I version git tag -am version version) && git push --tags"
},
"repository": {
"type": "git",
"url": "git://github.com/dyoder/fairmont.git"
},
"keywords": [
],
"authors": [
"Dan Yoder"
],
"license": "ISC",
"devDependencies": {
"amen": "^1.0.0-alpha-03",
"coffee-script": "~1.9.3",
"json": "^9.0.3"
},
"dependencies": {
},
"engine": "node >= 0.12.x"
}