forked from microsoft/node-jsonc-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.37 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": "json5-parser",
"version": "0.0.2",
"description": "Scanner and parser for JSON5.",
"main": "./lib/umd/main.js",
"typings": "./lib/umd/main",
"module": "./lib/esm/main.js",
"author": "Matt Kantor",
"repository": {
"type": "git",
"url": "https://github.com/mkantor/node-json5-parser"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mkantor/node-json5-parser/issues"
},
"devDependencies": {
"@types/json5": "^0.0.30",
"@types/mocha": "^5.2.7",
"@types/node": "^10.12.12",
"mocha": "^6.2.2",
"rimraf": "^3.0.0",
"tslint": "^5.20.0",
"typescript": "^3.8.3"
},
"scripts": {
"prepublishOnly": "npm run clean && npm run compile-esm && npm run test && npm run remove-sourcemap-refs",
"postpublish": "node ./build/post-publish.js",
"compile": "tsc -p ./src",
"compile-esm": "tsc -p ./src/tsconfig.esm.json",
"remove-sourcemap-refs": "node ./build/remove-sourcemap-refs.js",
"clean": "rimraf lib",
"watch": "tsc -w -p ./src",
"test": "npm run compile && mocha",
"profile": "npm run compile && NODE_ENV=production node --prof ./lib/umd/benchmark/index.js && echo \"Run this for detailed profiling:\nnode --prof-process $(ls -1 isolate-*.log | tail -n1)\"",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"json5": "^2.1.3"
}
}