This repository was archived by the owner on Dec 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.43 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.43 KB
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
{
"version": "1.2.3",
"name": "event-target",
"description": "The EventTarget Class Polyfill",
"homepage": "https://github.com/WebReflection/event-target",
"unpkg": "./min.js",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"scripts": {
"bundle": "rollup --config rollup.config.js && npm run cleanup",
"bundles": "echo '/*! (c) 2017 Andrea Giammarchi (ISC) */ var EventTarget = ' > index.js && asbundle esm/index.js | babel --plugins=$(node -e 'console.log(require(\"./babel-plugins.json\").join(\",\"))') >> index.js",
"build": "npm run cjs && npm run bundle && npm run min && npm test && npm run size",
"cleanup": "echo \"/*! (c) 2017 Andrea Giammarchi (ISC) */\n$(cat index.js | sed 's/}({}));/}());/' | sed 's/(exports)/()/' | sed 's/var EventTarget$1 = EventTarget;//' | sed 's/return exports;/return EventTarget;/' | sed -e 's/exports.*;//')\" > index.js",
"cjs": "ascjs ./esm ./cjs",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"min": "uglifyjs index.js --support-ie8 --comments=/^!/ -c -m -o min.js",
"size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c min.js | wc -c",
"test": "istanbul cover test/index.js"
},
"keywords": [
"EventTarget",
"polyfill",
"universal"
],
"author": "Andrea Giammarchi",
"devDependencies": {
"ascjs": "^2.4.0",
"babel-cli": "^6.26.0",
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"babel-plugin-transform-es2015-computed-properties": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-duplicate-keys": "^6.24.1",
"babel-plugin-transform-es2015-function-name": "^6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-plugin-transform-es2015-template-literals": "^6.22.0",
"basichtml": "^0.10.5",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^3.0.2",
"tressa": "^0.3.1",
"uglify-js": "^2.8.29"
},
"repository": {
"type": "git",
"url": "git://github.com/WebReflection/event-target.git"
},
"bugs": {
"url": "https://github.com/WebReflection/event-target/issues"
},
"directories": {
"test": "test"
},
"dependencies": {},
"license": "ISC"
}