-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.09 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
{
"name": "mutantjs",
"version": "0.2.0",
"description": "Mutation watcher and reflow detection for the browser",
"main": "lib/mutant.js",
"scripts": {
"test": "phantomjs phantom.js"
},
"author": "Andrew Newdigate <andrew@gitter.im>",
"license": "MIT",
"repository": "git@github.com:gitterHQ/mutant.js.git",
"wake": {
"javascript": {
"sourceDirectory": "lib",
"targetDirectory": "public/assets",
"builds": {
"src": {
"digest": false,
"minify": false
},
"min": {
"digest": false,
"minify": true,
"tag": "suffix"
}
},
"targets": {
"mutant.js": [
"mutant.js"
]
}
}
},
"testling": {
"html": "browser.html",
"browsers": [
"ie/9..latest",
"chrome/18..latest",
"firefox/22..latest",
"safari/latest",
"opera/latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/latest"
]
},
"devDependencies": {
"jstest": "~1.0.4",
"wake": "^0.3.4",
"tape": "~2.4.2"
}
}