-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.6 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
52
53
54
55
{
"name": "@nyariv/sandboxjs",
"version": "0.8.35",
"description": "Javascript sandboxing library.",
"main": "dist/node/Sandbox.js",
"module": "./build/Sandbox.js",
"browser": "./dist/Sandbox.min.js",
"scripts": {
"test": "NODE_OPTIONS='--no-warnings=ExperimentalWarning' jest",
"build": "tsc --project tsconfig.json --outDir build --declaration && rollup -c",
"lint": "prettier --check \"**/*.+(ts|json)\" && eslint --ext .ts .",
"lint:fix": "prettier --write \"**/*.+(ts|json)\" && eslint --ext .ts --fix .",
"patch": "npm version patch",
"prepare": "husky"
},
"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": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"node-fetch": "^3.3.2",
"prettier": "^3.8.0",
"rollup": "^4.55.2",
"rollup-plugin-bundle-stats": "^4.21.8",
"ts-jest": "^29.4.6",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.json": [
"prettier --write"
]
}
}