-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.04 KB
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
{
"name": "bill-react",
"version": "1.0.0",
"description": "A React Exercise in Billing",
"main": "js/app.js",
"scripts": {
"start": "watchify -o js/bundle.js -v -d js/app.js",
"build": "browserify . -t [envify --NODE_ENV production] | uglifyjs -cm > js/bundle.min.js",
"test": "jest -w 20"
},
"author": "Tom Rees-Herdman",
"license": "ISC",
"devDependencies": {
"babel-jest": "^5.3.0",
"babelify": "^6.3.0",
"browserify": "^11.1.0",
"envify": "^3.4.0",
"install": "^0.1.8",
"jest-cli": "^0.5.7",
"npm": "^3.3.3",
"uglify-js": "^2.4.24",
"watchify": "^3.4.0"
},
"browserify": {
"transform": [
"babelify",
"envify"
]
},
"jest": {
"rootDir": "./js",
"scriptPreprocessor": "../node_modules/babel-jest",
"unmockedModulePathPatterns": [
"../node_modules/react",
"test"
]
},
"dependencies": {
"babel": "^5.8.23",
"flux": "^2.1.1",
"jquery": "^2.1.4",
"keymirror": "^0.1.1",
"moment": "^2.10.6",
"react": "^0.13.3"
}
}