-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.45 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
{
"name": "ampersand-events",
"description": "Module that can be mixed into any object to provide eventing. Heavily based on Backbone Events.",
"version": "2.0.2",
"author": "Henrik Joreteg <[email protected]>",
"browserify": {
"transform": [
"ampersand-version"
]
},
"files": [
"libs",
"ampersand-events.js",
"NOTICE.md"
],
"bugs": {
"url": "https://github.com/ampersandjs/ampersand-events/issues"
},
"dependencies": {
"ampersand-version": "^1.0.2",
"lodash": "^4.6.1"
},
"devDependencies": {
"phantomjs": "^1.9.19",
"tape": "^4.4.0",
"zuul": "^3.9.0"
},
"homepage": "https://github.com/ampersandjs/ampersand-events",
"keywords": [
"ampersand",
"events"
],
"license": "MIT",
"main": "ampersand-events.js",
"repository": {
"type": "git",
"url": "https://github.com/ampersandjs/ampersand-events"
},
"scripts": {
"start": "zuul --local -- test/index.js",
"test": "zuul --phantom -- test/index.js",
"test-ci": "zuul -- test/index.js",
"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",
"validate": "npm ls"
}
}