-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.29 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
{
"name": "javascript-stringify",
"version": "2.1.0",
"description": "Stringify is to `eval` as `JSON.stringify` is to `JSON.parse`",
"keywords": [
"stringify",
"javascript",
"object",
"eval",
"string",
"code"
],
"homepage": "https://github.com/blakeembrey/javascript-stringify",
"bugs": {
"url": "https://github.com/blakeembrey/javascript-stringify/issues"
},
"repository": "https://github.com/blakeembrey/javascript-stringify.git",
"license": "MIT",
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"format": "ts-scripts format",
"lint": "ts-scripts lint",
"prepare": "ts-scripts install && ts-scripts build",
"specs": "ts-scripts specs",
"test": "ts-scripts test"
},
"devDependencies": {
"@borderless/ts-scripts": "^0.15.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^3.2.4",
"fast-check": "^4.6.0",
"semver": "^7.7.4",
"typescript": "^6.0.2",
"vitest": "^3.2.4"
},
"publishConfig": {
"access": "public"
},
"ts-scripts": {
"project": "tsconfig.build.json"
}
}