-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 1.34 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
{
"name": "@nyariv/sandboxjs",
"version": "0.8.23",
"description": "Javascript sandboxing library.",
"main": "dist/node/Sandbox.js",
"module": "./build/Sandbox.js",
"browser": "./dist/Sandbox.min.js",
"scripts": {
"test": "mocha test/test.js",
"build": "tsc --project tsconfig.json --outDir build --declaration && rollup -c",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"lint:fix": "eslint --ignore-path .eslintignore --ext .js,.ts --fix .",
"format": "prettier --ignore-path .eslintignore --write \"**/*.+(js|ts|json)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/nyariv/SandboxJS.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/nyariv/SandboxJS/issues"
},
"homepage": "https://github.com/nyariv/SandboxJS#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"chai": "^4.3.7",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"mocha": "^10.2.0",
"node-fetch": "^2",
"prettier": "^2.8.7",
"rollup": "^3.20.2",
"rollup-plugin-filesize": "^10.0",
"tslib": "^2.5.0",
"typescript": "^5.0"
}
}