forked from GoogleChrome/proxy-polyfill
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 817 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 817 Bytes
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
{
"name": "proxy-polyfill",
"version": "0.3.0",
"description": "Polyfill for the Proxy object",
"main": "proxy.min.js",
"module": "./src/index.js",
"jsnext:main": "./src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChrome/proxy-polyfill.git"
},
"keywords": [
"polyfill",
"html5",
"proxy",
"es6"
],
"author": "The Chromium Authors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GoogleChrome/proxy-polyfill/issues"
},
"homepage": "https://github.com/GoogleChrome/proxy-polyfill#readme",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^3.5.3",
"google-closure-compiler": "^20180204.0.0"
},
"scripts": {
"build": "node build.js",
"pretest": "npm run build",
"test": "mocha"
}
}