forked from developit/undom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.08 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
{
"name": "undom",
"amdName": "undom",
"version": "0.3.3",
"description": "Minimally viable DOM Document implementation.",
"main": "dist/undom.js",
"minified:main": "dist/undom.min.js",
"jsnext:main": "src/undom.js",
"scripts": {
"build": "npm-run-all transpile minify size",
"transpile": "rollup -c config/rollup.config.js",
"minify": "uglifyjs $npm_package_main -cm -o $npm_package_minified_main -p relative --in-source-map ${npm_package_main}.map --source-map ${npm_package_minified_main}.map",
"size": "echo \"gzip size: $(gzip-size $npm_package_minified_main | pretty-bytes)\"",
"test": "eslint {src,test} && mocha --compilers js:babel-register test/**/*.js",
"prepublish": "npm-run-all build test",
"release": "npm run -s build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"eslintConfig": {
"extends": "./config/eslint.js"
},
"babel": {
"presets": [
"es2015-minimal",
"stage-0"
]
},
"keywords": [
"dom",
"document",
"shim"
],
"repository": {
"type": "git",
"url": "git+https://github.com/developit/undom.git"
},
"author": "Jason Miller <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/developit/undom/issues"
},
"homepage": "https://github.com/developit/undom",
"devDependencies": {
"babel-core": "^6.6.4",
"babel-eslint": "^6.1.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-minimal": "^2.0.0",
"babel-preset-es2015-minimal-rollup": "^2.0.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"buble": "^0.12.4",
"chai": "^3.5.0",
"eslint": "^3.0.1",
"gzip-size-cli": "^1.0.0",
"mkdirp": "^0.5.1",
"mocha": "^2.4.5",
"npm-run-all": "^2.3.0",
"pretty-bytes-cli": "^1.0.0",
"rollup": "^0.33.1",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-buble": "^0.12.1",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"uglify-js": "^2.6.2"
}
}