-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "hover",
"version": "3.0.0-alpha.6",
"description": "Very lightweight (anti-gravity?) data store, with action reducers and state change listeners.",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"size": "./node_modules/.bin/uglifyjs src/index.js -m -c | gzip | wc -c",
"watch": "mocha --recursive -wGR nyan",
"test-travis": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "mocha --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/jesseskinner/hover.git"
},
"keywords": [
"flux",
"reactjs",
"javascript"
],
"author": "Jesse Skinner <jesse@thefutureoftheweb.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jesseskinner/hover/issues"
},
"homepage": "https://github.com/jesseskinner/hover",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"uglify-js": "^2.6.2"
}
}