-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "vigour-state",
"version": "4.8.2",
"description": "Reactive state management",
"main": "lib/index.js",
"scripts": {
"test": "node test | tap-difflet && standard",
"dev": "nodemon test | tap-difflet",
"dev-browser": "budo ./test/performance/canvas.js -p 8080 --live",
"cover": "istanbul cover --report none --print detail test/index.js",
"docs": "node_modules/vigour-doc/bin/vdoc",
"travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vigour-io/state.git"
},
"keywords": [
"javascript",
"observable",
"state"
],
"author": "Vigour.io <dev@vigour.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vigour-io/state/issues"
},
"dependencies": {
"vigour-observable": "^3.1.7",
"vigour-stamp": "^1.3.2",
"vigour-util": "^3.3.0",
"vigour-is": "^2.0.11",
"bubleify": "0.5.1"
},
"devDependencies": {
"stats-js": "1.0.0-alpha1",
"tape": "^4.4.0",
"tap-difflet": "0.4.0",
"nodemon": "^1.9.1",
"coveralls": "^2.11.9",
"istanbul": "^0.4.3",
"vigour-doc": "^1.0.5",
"vigour-performance": "^1.3.1",
"standard": "^8.4.0",
"pre-commit": "^1.1.3",
"budo": "^8.2.2"
},
"browserify": {
"transform": [
"bubleify"
]
},
"homepage": "https://github.com/vigour-io/state#readme"
}