-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.45 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.45 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
{
"name": "json-stringify-format",
"version": "1.0.2",
"description": "npm package for formatting json stringify",
"main": "lib/index.js",
"scripts": {
"build": "npm run ts && npx babel src --out-dir lib --presets=@babel/env",
"watch": "concurrently 'npm run watch:ts' 'npx babel src --watch --out-dir lib --presets=@babel/env'",
"watch:ts": "tsc --watch src/index.ts",
"watch:babel": "npx babel src --watch --out-dir lib --presets=@babel/env",
"ts": "tsc src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AllenChinese/json-stringify-format.git"
},
"author": "zhoujiawei",
"license": "ISC",
"bugs": {
"url": "https://github.com/AllenChinese/json-stringify-format/issues"
},
"homepage": "https://github.com/AllenChinese/json-stringify-format#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/preset-env": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.6.0",
"typescript": "^3.6.4",
"typescript-eslint": "0.0.1-alpha.0"
},
"dependencies": {
"@babel/polyfill": "^7.7.0",
"@types/node": "^12.12.6",
"concurrently": "^5.0.0"
}
}