forked from polygonplanet/weakmap-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.39 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
{
"name": "weakmap-polyfill",
"version": "2.0.0",
"description": "ECMAScript6 WeakMap polyfill",
"main": "weakmap-polyfill.js",
"directories": {
"test": "tests"
},
"dependencies": {},
"devDependencies": {
"es5-shim": "^4.5.8",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-detect-browsers": "^2.1.0",
"karma-firefox-launcher": "^0.1.7",
"karma-ie-launcher": "^0.2.0",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.2",
"karma-safari-launcher": "^0.1.1",
"mocha": "^2.4.5",
"power-assert": "^1.3.1",
"uglify-js": "^2.6.2"
},
"scripts": {
"minify": "uglifyjs weakmap-polyfill.js -o weakmap-polyfill.min.js --keep-fnames --comments -m -b ascii-only=true,beautify=false",
"test": "mocha tests/test-node && mocha tests/test-node-polyfill && karma start karma.conf.js",
"travis": "mocha tests/test-node && mocha tests/test-node-polyfill && karma start karma.conf.js --single-run"
},
"repository": {
"type": "git",
"url": "https://github.com/polygonplanet/weakmap-polyfill.git"
},
"keywords": [
"weakmap",
"polyfill",
"shim",
"es6",
"es2015",
"ecmascript",
"javascript"
],
"author": "polygon planet",
"license": "MIT",
"bugs": {
"url": "https://github.com/polygonplanet/weakmap-polyfill/issues"
},
"homepage": "https://github.com/polygonplanet/weakmap-polyfill"
}