-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.47 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
47
48
49
{
"name": "pipez",
"version": "1.1.12",
"description": "Function sequencing reloaded",
"main": "build/pipez.es5",
"scripts": {
"build": "npm run lint && npm run lint-test && npm run babel",
"lint": "eslint pipez.js",
"lint-test": "eslint test.js",
"test": "env PIPEZ_TEST_FILE='./pipez' nyc --reporter=html --reporter=text mocha --reporter spec",
"test-es5": "env PIPEZ_TEST_FILE='./build/pipez.es5' nyc --reporter=html --reporter=text mocha --reporter spec",
"autotest": "env PIPEZ_TEST_FILE='./pipez' mocha --reporter spec --watch",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"babel": "babel pipez.js --source-maps inline --out-file ./build/pipez.es5.js"
},
"repository": {
"type": "git",
"url": "https://github.com/xpl/pipez.git"
},
"keywords": [
"pipe",
"function",
"sequencing",
"configuration",
"currying",
"chaining",
"AOP",
"aspect oriented programming",
"partial application",
"partial"
],
"author": "Vitaly Gordon <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/xpl/pipez/issues"
},
"homepage": "https://github.com/xpl/pipez",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-es2017-object-entries": "0.0.4",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"eslint": "^4.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"nyc": "^11.1.0"
}
}