-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 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
{
"name": "pipeline.sjs",
"version": "1.0.2",
"license": "MIT",
"homepage": "https://github.com/adlawson/pipeline.sjs",
"description": "Naturally expressive functional composition",
"keywords": [
"compose",
"composition",
"functional",
"pipe",
"pipeline",
"sjs",
"sweet-js",
"sweet-macros"
],
"repository": {
"type": "git",
"url": "[email protected]:adlawson/pipeline.sjs"
},
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"build": "make -B",
"test": "make test/macro -B && ./node_modules/.bin/sjs -m ./macro/pipeline.sjs -o ./test/build/pipeline.js ./test/macro/pipeline.sjs && ./node_modules/.bin/mocha --ui tdd --reporter spec ./test/build"
},
"devDependencies": {
"chai": "~1.9.0",
"mocha": "~1.18.0",
"sinon": "~1.9.0",
"sweet.js": "~0.5.0"
}
}