-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 KB
/
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
{
"name": "meval",
"version": "1.1.0",
"description": "Mimic eval in given context",
"main": "dist/meval.js",
"scripts": {
"build": "npx rollup -c",
"test": "npx mocha test/test.js",
"docs": "npx jsdoc -c jsdoc.json",
"lint": "npx eslint .",
"debug": "node --nolazy --inspect-brk=9229 test/debug.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marverix/meval.git"
},
"keywords": [
"javascript",
"js",
"eval",
"safe-eval",
"context-eval",
"context",
"sanitize-eval"
],
"author": "marverix",
"license": "ISC",
"bugs": {
"url": "https://github.com/marverix/meval/issues"
},
"homepage": "https://github.com/marverix/meval#readme",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-external-helpers": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"chai": "^4.2.0",
"eslint": "^6.7.2",
"husky": "^3.1.0",
"jsdoc": "^3.6.3",
"jsdoc-rtd": "^1.0.15",
"mocha": "^6.2.2",
"rollup": "^1.27.8",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-uglify": "^6.0.4"
}
}