-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1018 Bytes
/
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
{
"name": "es2015-proxy-shim",
"description": "A limited ES2015 Proxy shim.",
"main": "index.js",
"scripts": {
"test": "eslint . && mocha tests",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"engines": {
"node": ">=4.4.0"
},
"files": [
"index.js"
],
"keywords": [
"es2015",
"es6",
"proxy",
"trap",
"shim"
],
"author": "Daniel Bölzle",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dbo/es2015-proxy-shim.git"
},
"devDependencies": {
"core-js": "^2.2.1",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.1.1",
"mocha": "^4.0.0",
"semantic-release": "^7.0.1"
},
"eslintConfig": {
"env": {
"es6": true
},
"extends": "eslint:recommended",
"rules": {
"strict": "error",
"no-trailing-spaces": "error"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}