-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"name": "babel-plugin-secure-syntax",
"version": "1.0.3",
"description": "security plugin for babel that checks for accidental API keys in your source code",
"main": "secure-syntax.js",
"author": "Pieter Ouwerkerk <pieter.ouwerkerk@gmail.com>",
"license": "MIT",
"dependencies": {
"babel-traverse": "^6.26.0",
"babel-types": "^6.26.0",
"babylon": "^6.18.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-core": "^6.26.0",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"nyc": "^11.4.1",
"ramda": "^0.25.0"
},
"scripts": {
"test": "nyc ava",
"report": "nyc report --reporter=html"
},
"repository" : "https://github.com/runkitdev/babel-plugin-secure-syntax.git",
"bugs": "https://github.com/runkitdev/babel-plugin-secure-syntax/issues",
"ava": {
"files": [
"tests/*.js"
]
}
}