-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 928 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 928 Bytes
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
{
"name": "flux-Calculator",
"version": "0.0.1",
"description": "Example of a Web Calculator built using Flux Architecture and React Ui Library",
"Flux": "https://github.com/facebook/flux",
"React": "http://facebook.github.io/react/index.html",
"main": "js/app.js",
"dependencies": {
"flux": "^2.0.0",
"keymirror": "~0.1.0",
"object-assign": "^1.0.0",
"react": "~0.12.0"
},
"devDependencies": {
"browserify": "^6.2.0",
"envify": "^3.0.0",
"jest-cli": "~0.1.18",
"reactify": "^0.15.2",
"uglify-js": "~2.4.15",
"watchify": "^2.1.1"
},
"scripts": {
"start": "watchify -o js/bundle.js -v -d .",
"build": "NODE_ENV=production browserify . | uglifyjs -cm > js/bundle.min.js",
"test": "jest"
},
"author": "www.linkedin.com/in/method7",
"browserify": {
"transform": [
"reactify",
"envify"
]
},
"jest": {
"rootDir": "./js"
}
}