-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
40 lines (40 loc) · 906 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
{
"author": "Remy Sharp",
"name": "loop-protect",
"description": "Prevent infinite loops in dynamically eval'd JavaScript.",
"main": "dist/",
"version": "2.1.6",
"homepage": "https://github.com/jsbin/loop-protect",
"repository": {
"type": "git",
"url": "git://github.com/jsbin/loop-protect.git"
},
"scripts": {
"test": "jest test/*.test.js",
"build": "NODE_ENV=production babel lib/ --out-dir dist --copy-files",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"babel": {
"presets": [
"stage-0",
"env"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"babel-standalone": "^6.26.0",
"jest": "^22.0.6"
},
"licenses": [
{
"type": "MIT",
"url": "http://jsbin.mit-license.org"
}
]
}