zhangnaisong
2023-08-05 24d66c8d82b628a06e93dbb1abfea2049b3d45ab
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
{
  "name": "javascript-stringify",
  "version": "2.1.0",
  "publishConfig": {
    "access": "public"
  },
  "description": "Stringify is to `eval` as `JSON.stringify` is to `JSON.parse`",
  "license": "MIT",
  "repository": "https://github.com/blakeembrey/javascript-stringify.git",
  "author": {
    "name": "Blake Embrey",
    "email": "hello@blakeembrey.com",
    "url": "http://blakeembrey.me"
  },
  "homepage": "https://github.com/blakeembrey/javascript-stringify",
  "bugs": {
    "url": "https://github.com/blakeembrey/javascript-stringify/issues"
  },
  "main": "dist/index.js",
  "scripts": {
    "format": "ts-scripts format",
    "lint": "ts-scripts lint",
    "prepare": "ts-scripts install && ts-scripts build",
    "specs": "ts-scripts specs",
    "test": "ts-scripts test"
  },
  "files": [
    "dist/"
  ],
  "keywords": [
    "stringify",
    "javascript",
    "object",
    "eval",
    "string",
    "code"
  ],
  "devDependencies": {
    "@borderless/ts-scripts": "^0.4.1",
    "@types/jest": "^24.0.9",
    "@types/node": "^11.10.4",
    "@types/semver": "^5.5.0",
    "fast-check": "^1.12.0",
    "semver": "^5.6.0",
    "typescript": "^4.2.4"
  },
  "types": "dist/index.d.ts",
  "ts-scripts": {
    "project": "tsconfig.build.json"
  }
}