-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.68 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
{
"name": "milanojs-talk",
"version": "1.0.0",
"description": "Source code of my talk \"Javascript Test Dummies\" for MilanoJS",
"main": "index.js",
"scripts": {
"test": "karma start karma.conf.js",
"test-watch": "karma start karma.conf.js --auto-watch --no-single-run",
"cucumber": "cucumber-js",
"test-e2e": "parallelshell \"npm run serve\" \"npm run cucumber\"",
"watchify": "watchify src/app.js -t babelify -d -o public/bundle.js",
"watch": "parallelshell \"npm run watchify\" \"npm run browser-sync\"",
"dist": "browserify src/app.js -t babelify -o dist/bundle.js",
"browser-sync": "browser-sync start --files \"dist/bundle.js\" --server public/ --reload-delay 1000",
"serve": "npm run dist && http-server dist/ -p 3000 -s"
},
"repository": {
"type": "git",
"url": "http://github.com/maur8ino/milanojs-talk-july-2015.git"
},
"author": "Mauro Verrocchio <[email protected]>",
"license": "ISC",
"dependencies": {
"es5-shim": "^4.1.7",
"es6-promise": "^2.3.0",
"react": "^0.13.3"
},
"devDependencies": {
"babel": "^5.6.1",
"babelify": "^6.1.2",
"browser-sync": "^2.7.13",
"browserify": "^10.2.4",
"chai": "^3.0.0",
"coffee-script": "^1.9.3",
"cucumber": "^0.5.2",
"http-server": "^0.8.0",
"karma": "^0.12.37",
"karma-browserify": "^4.2.1",
"karma-chrome-launcher": "^0.2.0",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.0.2",
"karma-phantomjs-launcher": "^0.2.0",
"mocha": "^2.2.5",
"parallelshell": "^1.2.0",
"rewire": "^2.3.4",
"rewireify": "^0.2.1",
"selenium-webdriver": "^2.46.1",
"sinon": "^1.15.3",
"watchify": "^3.2.3"
}
}