-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
49
50
51
52
53
54
55
56
{
"name": "@supercharge/json",
"description": "Secure drop-in replacement for the global `JSON` object",
"version": "2.0.0",
"author": "Marcus Pöhls <marcus@superchargejs.com>",
"bugs": {
"url": "https://github.com/supercharge/json/issues"
},
"devDependencies": {
"@japa/run-failed-tests": "~1.0.7",
"@japa/runner": "~2.0.9",
"@japa/spec-reporter": "~1.1.12",
"@supercharge/eslint-config-typescript": "~2.2.0",
"@supercharge/tsconfig": "~3.1.0",
"@types/node": "~17.0.40",
"@typescript-eslint/eslint-plugin": "~5.27.1",
"c8": "~7.11.3",
"eslint": "~8.17.0",
"expect": "~28.1.1",
"typescript": "~4.7.3"
},
"main": "dist",
"types": "dist",
"files": [
"dist"
],
"homepage": "https://github.com/supercharge/json",
"keywords": [
"nodejs",
"javascript",
"json",
"json-parse",
"json-stringify",
"drop-in replacement",
"prototype-pollution",
"supercharge",
"superchargejs"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/json.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"posttest": "c8 report --reporter=html",
"test": "npm run build && npm run lint && npm run test:run",
"test:run": "c8 node bin/test.js"
}
}