-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
50
51
52
53
{
"name": "ginjs",
"version": "0.3.0",
"description": "A tool for building feature-oriented productlines with Node.js.",
"main": "./lib/index.js",
"scripts": {
"compile": "babel -d lib/ src/;",
"buildDoc": "jsdoc -c jsdoc.json;",
"coverage": "nyc --reporter=lcov npm run mocha",
"deploy": "npm run test && npm run buildDoc;",
"dev": "watchman-make --make='npm run' -p src -t compile -p lib -t mocha -p src -t flow -p src -t lint;",
"flow": "flow; test $? -eq 0 -o $? -eq 2;",
"lint": "eslint src;",
"mocha": "mocha --opts ./mocha.opts",
"test": "npm run lint && npm run flow && npm run compile && npm run coverage && codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/WiRai/ginjs.git"
},
"author": "WiRai",
"bin": {
"gin": "./bin/gin.js"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsdoc": "^2.4.0",
"eslint-plugin-jsx-a11y": "2.x",
"eslint-plugin-react": "^6.8.0",
"flow-bin": "^0.36.0",
"jsdoc": "^3.4.3",
"jsdoc-babel": "^0.3.0",
"mocha": "^3.2.0",
"nyc": "^10.0.0"
},
"dependencies": {
"fs-extra": "^1.0.0",
"nunjucks": "^3.0.0",
"superimp": "^3.0.x"
}
}