forked from moreartyjs/moreartyjs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "morearty",
"version": "0.8.4",
"description": "Centralized state management for React in pure JavaScript.",
"homepage": "https://github.com/moreartyjs/moreartyjs",
"author": "Alexander Semenov",
"keywords": [
"moreartyjs",
"morearty",
"react",
"immutable",
"persistent"
],
"scripts": {
"build": "yarn test && yarn run build:dev && yarn run uglify",
"build:dev": "browserify ./index.js -t browserify-shim -s Morearty -o dist/morearty.js",
"doc": "rm -rf ./doc && jsdoc src/* INDEX.md --destination doc",
"jshint": "jshint src/* test/*",
"test": "mocha -b -R spec test/*",
"uglify": "uglifyjs dist/morearty.js -m -o dist/morearty.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/moreartyjs/moreartyjs"
},
"bugs": "https://github.com/moreartyjs/moreartyjs/issues",
"license": "Apache-2.0",
"engines": {
"node": ">=0.10.0"
},
"files": [
"src/*",
"README.md",
"index.js",
"native.js",
"dist/morearty.js",
"dist/morearty.min.js"
],
"devDependencies": {
"browserify": "^12.0.x",
"browserify-shim": "^3.8.x",
"chai": "^3.4.0",
"create-react-class": "^15.6.3",
"domino": "^1.0.x",
"immutable": "~3.8.x",
"jquery": "^2.1.x",
"jsdoc": "^3.3.x",
"jshint": "^2.8.0",
"mocha": "^2.3.x",
"prop-types": "^15.6.1",
"q": "1.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"sinon": "^1.17.x",
"uglify-js": "^2.5.x"
},
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM",
"immutable": "global:Immutable"
}
}