-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "undom",
"amdName": "undom",
"version": "0.4.0",
"description": "Minimally viable DOM Document implementation.",
"main": "dist/undom.js",
"umd:main": "dist/undom.umd.js",
"unpkg": "dist/undom.umd.js",
"source": "src/undom.js",
"scripts": {
"build": "microbundle",
"test": "eslint src test && mocha -r esm test/**/*.js",
"prepare": "npm run -s build && npm run -s test",
"release": "npm run -s prepare && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"eslintConfig": {
"extends": "eslint-config-developit",
"rules": {
"jest/valid-expect": 0
}
},
"keywords": [
"dom",
"document",
"shim"
],
"repository": "developit/undom",
"author": "Jason Miller <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/developit/undom/issues",
"homepage": "https://github.com/developit/undom",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^4.19.1",
"eslint-config-developit": "^1.1.1",
"esm": "^3.2.0",
"microbundle": "^0.9.0",
"mocha": "^5.2.0",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0"
}
}