-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.1 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.1 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "loop-breaker",
"version": "0.1.0",
"description": "Transforms JavaScript code to ensure that loops do not run indefinitely",
"main": "dist/loopBreaker.js",
"author": {
"name": "Mat Brown",
"email": "mat.a.brown@gmail.com"
},
"license": "MIT",
"dependencies": {
"recast": "^0.14.4"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-loader": "^6.4.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.2.0",
"babel-tape-runner": "^2.0.1",
"del": "^2.2.2",
"eslint": "^3.17.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"lodash": "^4.17.4",
"pify": "^2.3.0",
"tape": "^4.6.3",
"webpack": "^2.2.1",
"webpack-stream": "^3.2.0"
},
"scripts": {
"lint": "eslint src test *.js",
"pretest": "yarn run lint",
"test": "babel-tape-runner test"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": "> 1%",
"node": true
}
}
]
],
"plugins": [
"babel-plugin-add-module-exports"
]
}
}