-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.93 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
{
"name": "milanojs-talk",
"version": "1.0.0",
"description": "Source code of my talk \"Javascript Test Dummies\" for MilanoJS",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=testing ava --verbose",
"test-watch": "NODE_ENV=testing ava --watch",
"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/fevr-talk-may-2016.git"
},
"author": "Mauro Verrocchio <[email protected]>",
"license": "ISC",
"ava": {
"require": [
"babel-register",
"./test/helpers/setup-browser-env.js"
],
"babel": "inherit"
},
"babel": {
"presets": [ "es2015", "react" ],
"env": {
"testing": {
"plugins": [ "rewire" ]
}
}
},
"dependencies": {
"es6-promise": "^2.3.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"ava": "^0.14.0",
"babel": "^6.5.2",
"babel-plugin-rewire": "^1.0.0-rc-3",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"browser-sync": "^2.7.13",
"browserify": "^13.0.1",
"chai": "^3.0.0",
"coffee-script": "^1.9.3",
"cucumber": "^0.5.2",
"fetch-mock": "^4.5.0",
"http-server": "^0.9.0",
"jsdom": "^9.0.0",
"parallelshell": "^2.0.0",
"phantomjs-prebuilt": "^2.1.7",
"react-addons-test-utils": "^15.0.2",
"selenium-webdriver": "^2.46.1",
"sinon": "~1.15.3",
"watchify": "^3.7.0"
}
}