-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
64 lines (64 loc) · 1.59 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
57
58
59
60
61
62
63
64
{
"name": "format-to-json",
"version": "3.0.6",
"description": "Format string to a json like template.",
"main": "index.js",
"bin": {
"fmt2json": "./bin/fmt2json.js"
},
"scripts": {
"build": "npm run babel && node scripts/bugfix.js && npm run uglify && node scripts/build.js",
"babel": "node node_modules/@babel/cli/bin/babel src -d ./",
"uglify": "node node_modules/uglify-js/bin/uglifyjs fmt2json.js -c -m -o fmt2json.min.js",
"test": "node test/test.js",
"test:src": "node test/test.js --src",
"test:ts": "esno test/test.ts",
"test:html": "serve ."
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/CN-Tower/format-to-json.git"
},
"keywords": [
"fmt2json",
"format2json",
"json",
"zjson",
"toJson",
"beJson",
"str2json",
"string2json",
"str-to-json",
"string-to-json",
"fmt-to-json",
"format-to-json",
"json-kit",
"json-like",
"json-editor",
"json-tools",
"json-utils",
"json-formatter",
"json-algorithm"
],
"author": "CN-Tower",
"license": "MIT",
"bugs": {
"url": "https://github.com/CN-Tower/format-to-json/issues"
},
"homepage": "https://github.com/CN-Tower/format-to-json#readme",
"dependencies": {
"commander": "^2.19.0",
"enquirer": "^2.3.6",
"funclib": "^5.1.3"
},
"devDependencies": {
"@babel/cli": "^7.23.2",
"@babel/core": "^7.23.2",
"@babel/node": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"babel-preset-env": "^1.7.0",
"esno": "^0.16.3",
"serve": "^14.2.0",
"uglify-js": "^3.11.0"
}
}