-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "stateware",
"version": "2.1.1",
"description": "Dependency-free state container with easy copy and auto memoized getters",
"main": "./lib/index.js",
"scripts": {
"build": "babel src -d lib",
"test": "mocha src/**/*.test.js --compilers js:babel-register",
"test:w": "npm run test -- --watch",
"prepublish": "npm run test&&npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wellguimaraes/stateware.git"
},
"keywords": [
"state",
"container",
"getters",
"memoize"
],
"author": "Wellington Guimaraes",
"license": "MIT",
"bugs": {
"url": "https://github.com/wellguimaraes/stateware/issues"
},
"homepage": "https://github.com/wellguimaraes/stateware#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.24.0",
"benchmark": "^2.1.4",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"sinon": "^3.2.1"
}
}