-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 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
54
55
56
57
58
59
{
"name": "exseed-cli",
"version": "0.2.0",
"description": "exseed command line tool",
"main": "dist/index.js",
"scripts": {
"test": "npm run jscs && npm run build && npm run mocha",
"jscs": "jscs ./src --config=./.jscsrc --verbose",
"build": "gulp clean && gulp build",
"mocha": "mocha --harmony ./dist/tests/utils/index.js ./dist/tests/commands/index.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/exseed/exseed-cli.git"
},
"keywords": [
"node",
"framework",
"extensible",
"command line",
"cli"
],
"author": "Weng, Chih-Ping <[email protected]> (http://github.com/gocreating)",
"license": "MIT",
"bugs": {
"url": "https://github.com/exseed/exseed-cli/issues"
},
"homepage": "https://github.com/exseed/exseed-cli",
"bin": {
"sd": "dist/index.js"
},
"dependencies": {
"babel-core": "^6.1.2",
"babel-loader": "^6.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.0.14",
"babel-preset-react": "^6.1.2",
"babel-preset-react-hmre": "^1.0.1",
"babel-preset-stage-0": "^6.3.13",
"commander": "^2.9.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.0.0",
"gulp-changed": "^1.3.0",
"gulp-if": "^2.0.0",
"gulp-mocha": "^2.2.0",
"gulp-nodemon": "^2.0.4",
"gulp-notify": "^2.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"pretty-hrtime": "^1.0.1",
"react": "^0.14.6",
"rimraf": "^2.5.0",
"webpack": "^1.9.6"
},
"devDependencies": {
"chai": "^3.4.1"
}
}