-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.54 KB
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
{
"name": "can-dom-mutate",
"description": "Dispatch and listen for DOM mutations",
"version": "2.0.9",
"author": {
"name": "DoneJS Team",
"email": "core@donejs.com",
"url": "https://bitovi.com"
},
"bugs": {
"url": "https://github.com/canjs/can-dom-mutate/issues"
},
"dependencies": {
"can-globals": "^1.0.0",
"can-namespace": "1.0.0",
"can-reflect": "^1.17.6",
"can-symbol": "^1.6.4"
},
"devDependencies": {
"can-dom-events": "^1.3.0",
"can-simple-dom": "^1.6.2",
"can-vdom": "^4.4.1",
"fixpack": "^2.3.1",
"jshint": "^2.9.1",
"steal": "^2.0.0",
"steal-qunit": "^2.0.0",
"steal-tools": "^1.2.0",
"testee": "^0.9.0"
},
"homepage": "https://github.com/canjs/can-dom-mutate",
"keywords": [
"canjs",
"mutation",
"mutationobserver",
"observer"
],
"license": "MIT",
"main": "can-dom-mutate",
"repository": {
"type": "git",
"url": "git://github.com/canjs/can-dom-mutate.git"
},
"scripts": {
"jshint": "jshint ./*.js ./test/*.js --config",
"lint": "fixpack && npm run jshint",
"postpublish": "git push --tags && git push",
"preversion": "npm test",
"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 lint && npm run testee",
"testee": "testee test.html --browsers firefox"
},
"steal": {
"main": "can-dom-mutate"
}
}