-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.62 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
61
62
63
64
65
66
67
68
{
"name": "domassist",
"version": "2.3.1",
"description": "Various dom helpers",
"main": "domassist.js",
"module": "dist/domassist.js",
"scripts": {
"start": "scriptkit",
"build": "scriptkit build",
"dev": "scriptkit dev",
"pretest": "scriptkit build",
"prepublishOnly": "npm run test",
"test": "cat test/domassist.test.dist.js | tape-run --static . --browser phantomjs --render tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firstandthird/domassist.git"
},
"keywords": [
"dom",
"browser",
"module",
"helper"
],
"author": "First+Third <[email protected]> (http://firstandthird.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/firstandthird/domassist/issues"
},
"homepage": "https://github.com/firstandthird/domassist#readme",
"devDependencies": {
"eslint-config-firstandthird": "^4.4.0",
"eslint-plugin-compat": "^3.1.2",
"eslint-plugin-import": "^2.18.0",
"phantomjs-prebuilt": "^2.1.16",
"scriptkit": "^3.0.0",
"static-server": "^2.2.1",
"tap-spec": "^5.0.0",
"tape-rollup": "^4.6.4",
"tape-run": "^6.0.0"
},
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true
},
"extends": "firstandthird",
"plugins": [
"compat"
],
"rules": {
"compat/compat": 2
}
},
"scriptkit": {
"files": {
"dist/domassist.js": "domassist.js",
"test/domassist.test.dist.js": "test/domassist.test.js"
},
"scripts": {
"babel": {
"exclude": [
"node_modules/tape-rollup/*"
]
}
}
}
}