-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
56 lines (56 loc) · 1.62 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
{
"name": "ampersand-model",
"description": "An extension to ampersand-state that adds methods and properties for working with a RESTful API.",
"version": "8.0.1",
"author": "Henrik Joreteg <[email protected]>",
"files": [
"ampersand-model.js"
],
"bugs": {
"url": "https://github.com/ampersandjs/ampersand-model/issues"
},
"dependencies": {
"ampersand-state": "^5.0.1",
"ampersand-sync": "^5.0.0",
"ampersand-version": "^1.0.2",
"lodash": "^4.11.1"
},
"devDependencies": {
"jshint": "^2.9.1",
"phantomjs": "^2.1.7",
"precommit-hook": "*",
"tape": "^4.8.0",
"zuul": "^3.9.0"
},
"homepage": "https://github.com/ampersandjs/ampersand-model",
"keywords": [
"model, ampersand, state"
],
"license": "MIT",
"main": "./ampersand-model.js",
"repository": {
"type": "git",
"url": "https://github.com/ampersandjs/ampersand-model.git"
},
"scripts": {
"start": "zuul --local -- test/index.js",
"test": "zuul --phantom -- test/index.js",
"test-ci": "zuul -- test/index.js",
"lint": "jshint .",
"validate": "npm ls",
"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"
},
"browserify": {
"transform": [
"ampersand-version"
]
},
"pre-commit": [
"lint",
"validate",
"test"
]
}