72 lines
1.8 KiB
JSON
Executable file
72 lines
1.8 KiB
JSON
Executable file
{
|
|
"name": "safer-eval",
|
|
"version": "1.3.6",
|
|
"description": "harmful as eval",
|
|
"keywords": [
|
|
"eval",
|
|
"safe"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/commenthol/safer-eval/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/commenthol/safer-eval.git"
|
|
},
|
|
"license": "MIT",
|
|
"author": "commenthol <commenthol@gmail.com>",
|
|
"main": "./lib/index.js",
|
|
"browser": {
|
|
"./lib/index.js": "./lib/browser.js"
|
|
},
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"preall": "npm run clean",
|
|
"all": "npm test",
|
|
"clean": "rimraf lib",
|
|
"coverage": "nyc -r html -r text npm test",
|
|
"prekarma": "npm run transpile",
|
|
"karma": "karma start",
|
|
"lint": "eslint --fix src test *.js",
|
|
"prepublishOnly": "npm run all",
|
|
"pretest": "npm run transpile",
|
|
"test": "mocha",
|
|
"posttest": "npm run lint",
|
|
"transpile": "babel -d lib src",
|
|
"zuul": "zuul --no-coverage --local 3000 -- test/*.js"
|
|
},
|
|
"dependencies": {
|
|
"clones": "^1.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.5.0",
|
|
"@babel/core": "^7.5.4",
|
|
"@babel/preset-env": "^7.5.4",
|
|
"babel-loader": "^8.0.6",
|
|
"eslint": "^6.0.1",
|
|
"eslint-config-standard": "^13.0.1",
|
|
"eslint-plugin-import": "^2.18.0",
|
|
"eslint-plugin-node": "^9.1.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
"karma": "^4.2.0",
|
|
"karma-chrome-launcher": "^3.0.0",
|
|
"karma-firefox-launcher": "^1.1.0",
|
|
"karma-mocha": "^1.3.0",
|
|
"karma-sourcemap-loader": "^0.3.7",
|
|
"karma-spec-reporter": "~0.0.32",
|
|
"karma-webpack": "^4.0.2",
|
|
"mocha": "^6.1.4",
|
|
"nyc": "^14.1.1",
|
|
"rimraf": "^2.6.3",
|
|
"webpack": "^4.35.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=6.0.0"
|
|
},
|
|
"optionalDevDependencies": {
|
|
"zuul": "^3.11.1"
|
|
}
|
|
}
|