-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.29 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.29 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
{
"name": "reframe-js",
"version": "1.0.0",
"repository": "https://github.com/sigmapoint/re-frame",
"description": "Re-Frame reference implementation for js (lacks materialised views)",
"main": "dist/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --recursive test",
"babel": "./node_modules/.bin/babel lib --out-dir dist",
"bundle-grids": "./node_modules/.bin/browserify example/src/js/grids.jsx -t reactify -o example/dist/js/grids.js",
"bundle-cities": "./node_modules/.bin/browserify example/src/js/cities.jsx -t reactify -o example/dist/js/cities.js",
"bundle-examples": "npm run bundle-cities && npm run bundle-grids",
"build-all": "npm run babel && npm run bundle-examples"
},
"author": "Karol Majta <karol.majta@sigmapoint.pl>, Karol Manijak <karol.manijak@sigmapoint.pl>",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.0.16",
"browserify": "^12.0.1",
"immstruct": "^2.0.0",
"immutable": "^3.7.5",
"js-csp": "git+https://github.com/Sigmapoint/js-csp.git",
"lodash": "^3.10.1",
"react": "^0.14.2",
"react-dom": "^0.14.2"
},
"devDependencies": {
"babel": "^6.0.15",
"babel-cli": "^6.1.1",
"babel-preset-es2015": "^6.0.15",
"chai": "^3.4.0",
"mocha": "^2.3.3",
"sinon": "^1.17.2"
}
}