-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.73 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
{
"name": "can-dom-events",
"description": "Listen for native and custom DOM events",
"version": "1.3.13",
"author": {
"name": "Chris Andrejewski",
"email": "core@donejs.com",
"url": "https://www.bitovi.com/"
},
"bugs": {
"url": "https://github.com/canjs/can-dom-events/issues"
},
"dependencies": {
"can-globals": "<2.0.0",
"can-key-tree": "^1.0.0",
"can-log": "^1.0.2",
"can-namespace": "^1.0.0",
"can-reflect": "^1.11.1"
},
"devDependencies": {
"detect-cyclic-packages": "^1.1.0",
"done-serve": "^2.3.0",
"fixpack": "^2.3.1",
"jquery": "^3.2.1",
"jshint": "^2.9.1",
"steal": "^1.3.1",
"steal-qunit": "^2.0.0",
"steal-tools": "^1.2.0",
"testee": "^0.9.0"
},
"homepage": "https://github.com/canjs/can-dom-events",
"keywords": [
"canjs",
"custom",
"dom",
"events",
"listener"
],
"license": "MIT",
"main": "can-dom-events",
"repository": {
"type": "git",
"url": "git://github.com/canjs/can-dom-events.git"
},
"scripts": {
"build": "node build.js",
"detect-cycle": "detect-cyclic-packages --ignore done-serve",
"develop": "done-serve --static --develop --port 8080",
"jshint": "jshint ./*.js ./helpers/*.js --config",
"lint": "fixpack && npm run jshint",
"postversion": "git push --follow-tags",
"preversion": "npm test && npm run build",
"release:major": "npm version major && npm publish",
"release:minor": "npm version minor && npm publish",
"release:patch": "npm version patch && npm publish",
"release:pre": "npm version prerelease && npm publish --tag pre",
"test": "npm run detect-cycle && npm run lint && npm run testee",
"testee": "testee test.html --browsers firefox"
}
}