forked from AmpersandJS/ampersand-state
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.49 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "ampersand-state",
"description": "An observable, extensible state object with derived watchable properties.",
"version": "5.0.0-remix",
"author": "Henrik Joreteg <[email protected]>",
"files": [
"ampersand-state.js"
],
"browserify": {
"transform": [
"ampersand-version"
]
},
"bugs": {
"url": "https://github.com/ampersandjs/ampersand-state/issues"
},
"dependencies": {
"ampersand-events": "^1.1.1",
"ampersand-version": "^1.0.0",
"array-next": "~0.0.1",
"key-tree-store": "^1.3.0",
"lodash.assign": "^3.2.0",
"lodash.bind": "^3.1.0",
"lodash.escape": "^3.0.0",
"lodash.forown": "^3.0.2",
"lodash.has": "^3.0.0",
"lodash.includes": "^3.1.3",
"lodash.isarray": "^3.0.4",
"lodash.isdate": "^3.0.1",
"lodash.isequal": "^3.0.1",
"lodash.isfunction": "^3.0.6",
"lodash.isobject": "^3.0.1",
"lodash.isstring": "^3.0.1",
"lodash.omit": "^3.1.0",
"lodash.result": "^3.0.0",
"lodash.union": "^3.1.0",
"lodash.uniqueid": "^3.0.0"
},
"devDependencies": {
"ampersand-collection": "^1.3.2",
"ampersand-registry": "0.x.x",
"coveralls": "^2.11.4",
"istanbul": "^0.4.0",
"jshint": "^2.5.3",
"phantomjs": "^1.9.19",
"precommit-hook": "^3.0.0",
"tape": "^4.0.3",
"zuul": "^3.9.0"
},
"homepage": "https://github.com/ampersandjs/ampersand-state",
"keywords": [
"model",
"object",
"observable"
],
"license": "MIT",
"main": "ampersand-state.js",
"repository": {
"type": "git",
"url": "git://github.com/ampersandjs/ampersand-state"
},
"scripts": {
"start": "zuul --local -- test/index.js",
"test": "zuul --phantom -- test/index.js",
"test-ci": "zuul -- test/index.js",
"coverage": "rm -rf coverage && istanbul cover -- tape test/index.js --verbose",
"validate": "npm ls",
"lint": "jshint ampersand-state.js ./test/*",
"benchmark": "for f in benchmark/*.js; do node --allow-natives-syntax --trace-deopt $f; done",
"preversion": "git checkout master && git pull && npm ls",
"publish-patch": "npm run preversion && npm version patch && git push origin master --tags && npm publish",
"publish-minor": "npm run preversion && npm version minor && git push origin master --tags && npm publish",
"publish-major": "npm run preversion && npm version major && git push origin master --tags && npm publish",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"pre-commit": [
"lint",
"validate",
"test"
]
}