-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "js-quick-start",
"version": "1.0.0",
"description": "A list of predefined templates can be used for quick prototyping or to try a framework/library.",
"main": "post.js",
"scripts": {
"test": "mocha tests/unit --compilers js:babel-core/register",
"build": "sh build.sh",
"update": "sh build.sh --update",
"start": "npm run build && http-server ./dist",
"e2e": "nightwatch tests/e2e/e2e-launcher.js -e local --config nightwatch.js ",
"e2e-sc": "nightwatch tests/e2e/e2e-launcher.js -e saucelabs --config nightwatch.js ",
"deploy": "sh deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kirjs/jsbin-quick-start.git"
},
"keywords": [],
"author": "Kirill Cherkashin",
"license": "ISC",
"bugs": {
"url": "https://github.com/kirjs/jsbin-quick-start/issues"
},
"babel": {
"presets": [
"react",
"es2015"
]
},
"homepage": "https://github.com/kirjs/jsbin-quick-start#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"http-server": "^0.9.0",
"mocha": "^2.5.3",
"nightwatch": "^0.9.5",
"react": "^0.14.3",
"react-dom": "^0.14.7"
}
}