-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 946 Bytes
/
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
{
"name": "dom-remove",
"version": "1.1.0",
"description": "Remove an Element from the DOM",
"main": "index.js",
"scripts": {
"test": "npm run build && mocha-phantomjs ./test/runner.html",
"build": "browserify -d -r assert -r ./index.js:dom-remove > bundle.js",
"watch": "onchange 'index.js' 'test/index.js' -- npm test"
},
"keywords": [
"dom",
"remove",
"parent"
],
"license": "MIT",
"author": {
"name": "Antoine Lehurt",
"email": "[email protected]",
"url": "http://kewah.com",
"twitter": "https://twitter.com/kewah"
},
"repository": {
"type": "git",
"url": "https://github.com/nk-components/dom-remove"
},
"dependencies": {
"array-every": "^0.1.1"
},
"devDependencies": {
"browserify": "^7.0.2",
"mocha": "^2.0.1",
"mocha-phantomjs": "^3.5.2",
"onchange": "0.0.2",
"phantomjs": "^1.9.12"
},
"browser": {
"every": "array-every"
}
}