-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 KB
/
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
37
38
39
40
41
42
43
44
45
46
{
"name": "fairmont",
"version": "2.0.1",
"description": "Functional reactive programming for JavaScript and CoffeeScript.",
"files": [
"lib/",
"src/",
"README.md",
"LICENSE",
"VERSION"
],
"main": "lib/index.js",
"scripts": {
"test": "coffee test/index.coffee",
"watch": "coffee -o lib/ -cw src/*.*coffee",
"prepublish": "coffee -o lib/ -c src/*.*coffee",
"postpublish": "(node_modules/.bin/json -f package.json version | xargs -I version git tag -am version version) && git push --tags"
},
"repository": {
"type": "git",
"url": "git://github.com/pandastrike/fairmont.git"
},
"keywords": [
"coffee",
"coffeescript",
"utility"
],
"authors": [
"Dan Yoder"
],
"license": "ISC",
"devDependencies": {
"amen": "1.0.x",
"coffee-script": "^1.10.0",
"json": "^9.0.3"
},
"dependencies": {
"fairmont-core": "^1.0.0",
"fairmont-helpers": "^2.0.0",
"fairmont-multimethods": "^1.0.0",
"fairmont-reactive": "^2.0.0",
"fairmont-process": "^2.0.0",
"fairmont-filesystem": "^2.0.0"
},
"engine": "node >= 6.0.0"
}