-
Notifications
You must be signed in to change notification settings - Fork 329
/
Copy pathpackage.json
102 lines (97 loc) · 2.88 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "nwb",
"description": "CLI tool for React apps and components & plain JS apps and npm modules",
"version": "0.11.1",
"license": "MIT",
"author": "Jonny Buchanan <[email protected]>",
"bin": {
"nwb": "lib/bin/nwb.js",
"react": "lib/bin/react.js"
},
"scripts": {
"build": "npm run lint && rimraf lib && babel src --loose all --out-dir lib",
"build:watch": "rimraf lib && babel src --watch --loose all --out-dir lib",
"lint": "eslint *.js src tests",
"lint:fix": "eslint *.js src tests --fix",
"test": "npm run build && mocha --compilers js:babel-core/register tests/*-test.js tests/commands/*-test.js",
"test:coverage": "npm run build && babel-node node_modules/isparta/bin/isparta cover --report html --report lcov node_modules/mocha/bin/_mocha -- tests/*-test.js tests/commands/*-test.js",
"test:watch": "mocha --watch --compilers js:babel-core/register tests/*-test.js"
},
"files": [
"docs",
"lib",
"templates",
"express.js"
],
"engines": {
"node": ">=0.12.0"
},
"dependencies": {
"argv-set-env": "1.0.1",
"chalk": "1.1.3",
"copy-template-dir": "1.2.1",
"debug": "2.2.0",
"eventsource-polyfill": "0.9.6",
"fs-extra": "0.30.0",
"glob" : "7.0.3",
"inquirer": "1.0.3",
"minimist": "1.2.0",
"qs": "6.2.0",
"resolve": "1.1.7",
"rimraf": "2.5.2",
"temp": "0.8.3",
"webpack-merge": "0.14.0",
"babel": "5.8.38",
"babel-core": "5.8.38",
"babel-plugin-react-display-name": "2.0.0",
"babel-plugin-react-transform": "1.1.1",
"babel-runtime": "5.8.29",
"react-transform-catch-errors": "1.0.2",
"react-transform-hmr": "1.0.4",
"redbox-noreact": "1.1.0",
"express": "4.13.4",
"connect-history-api-fallback": "1.2.0",
"karma": "0.13.22",
"diff": "2.2.3",
"isparta-loader": "1.0.0",
"karma-coverage": "1.0.0",
"karma-mocha": "1.0.1",
"karma-mocha-reporter": "2.0.3",
"karma-phantomjs-launcher": "1.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.7.0",
"phantomjs-prebuilt": "2.1.7",
"mocha": "2.5.3",
"expect": "1.20.1",
"webpack": "1.13.1",
"autoprefixer": "6.3.6",
"babel-loader": "5.4.0",
"css-loader": "0.23.1",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.5",
"html-webpack-plugin": "2.19.0",
"json-loader": "0.5.4",
"npm-install-webpack-plugin": "4.0.1",
"postcss-loader": "0.9.1",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack-dev-middleware": "1.6.1",
"webpack-hot-middleware": "2.10.0"
},
"devDependencies": {
"cross-spawn": "4.0.0",
"eslint-config-jonnybuchanan": "3.0.2",
"eventsource": "0.2.1",
"isparta": "3.5.3",
"tree-kill": "1.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/insin/nwb.git"
},
"keywords": [
"npm",
"react",
"cli"
]
}