forked from es-shims/es7-shim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (92 loc) · 2.51 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "es7-shim",
"version": "5.0.0",
"description": "ECMAScript 7 compatibility shims for legacy JavaScript engines",
"homepage": "http://github.com/es-shims/es7-shim/",
"author": "Jordan Harband <ljharb@gmail.com> (https://github.com/ljharb/)",
"contributors": [
"Jordan Harband <ljharb@gmail.com> (https://github.com/ljharb/)"
],
"bugs": {
"mail": "ljharb@gmail.com",
"url": "http://github.com/es-shims/es7-shim/issues"
},
"license": "MIT",
"main": "index.js",
"browser": "browser.js",
"repository": {
"type": "git",
"url": "http://github.com/es-shims/es7-shim.git"
},
"keywords": [
"ecmascript",
"harmony",
"es7",
"ES2016",
"shim",
"polyfill"
],
"scripts": {
"test": "npm run lint && parallelshell 'npm run tests-only' 'npm run security'",
"tests-only": "node test/index.js",
"prepublish": "npm run minify",
"build": "mkdir -p dist && browserify ./ > dist/es7-shim.js",
"minify": "npm run build && uglifyjs dist/es7-shim.js --comments --source-map=dist/es7-shim.map -m -b ascii_only=true,beautify=false > dist/es7-shim.min.js",
"coverage": "covert test/index.js",
"coverage-quiet": "covert test/index.js --quiet",
"lint": "parallelshell 'npm run jscs' 'npm run eslint'",
"jscs": "jscs test/index.js *.js",
"eslint": "eslint test/index.js *.js",
"eccheck": "editorconfig-tools check *.js **/*.js > /dev/null",
"security": "nsp check"
},
"dependencies": {
"array-includes": "^3.0.1",
"map-tojson": "^2.0.1",
"object.getownpropertydescriptors": "^1.0.4",
"object.entries": "^1.0.3",
"object.values": "^1.0.3",
"set-tojson": "^2.0.1",
"string-at": "^1.0.1",
"string.prototype.padstart": "^3.0.0",
"string.prototype.padend": "^3.0.0",
"string.prototype.trimleft": "^1.0.1",
"string.prototype.trimright": "^1.0.1"
},
"devDependencies": {
"tape": "^4.4.0",
"browserify": "^13.0.0",
"uglify-js": "^2.6.1",
"covert": "^1.1.0",
"jscs": "^2.8.0",
"editorconfig-tools": "^0.1.1",
"nsp": "^2.2.0",
"eslint": "^1.10.3",
"@ljharb/eslint-config": "^1.6.1",
"es6-promise": "^3.0.2",
"semver": "^5.1.0",
"replace": "^0.3.0",
"parallelshell": "^2.0.0"
},
"engines": {
"node": ">=0.4.0"
},
"testling": {
"files": "test/index.js",
"browsers": [
"iexplore/6.0..latest",
"firefox/3.0..6.0",
"firefox/15.0..latest",
"firefox/nightly",
"chrome/4.0..10.0",
"chrome/20.0..latest",
"chrome/canary",
"opera/10.0..latest",
"opera/next",
"safari/4.0..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2"
]
}
}