-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "perfect-json",
"version": "0.3.1",
"description": "Utility function to beautify JSON string...like JSON.stringify() but better",
"main": "lib/perfect-json.js",
"repository": "ezze/node-perfect-json",
"author": "Dmitriy Pushkov <[email protected]>",
"license": "MIT",
"keywords": [
"json",
"stringify",
"format",
"formatter",
"pretty",
"print",
"pretty-print",
"compact",
"indent"
],
"scripts": {
"prepublishOnly": "npm run lint && npm run test && npm run build",
"build": "npm run clean && babel src -d lib",
"watch": "npm run clean && babel src -d lib -w",
"clean": "rimraf lib",
"test": "jest",
"test:coverage": "jest --coverage",
"test:ci": "cross-env JEST_JUNIT_OUTPUT_DIR=reports/junit jest --coverage --ci --reporters=default --reporters=jest-junit",
"lint": "eslint src",
"lint:test": "eslint test",
"raise": "raise-version"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/eslint-parser": "^7.14.7",
"@babel/preset-env": "^7.14.8",
"babel-plugin-add-module-exports": "^1.0.4",
"cross-env": "^7.0.3",
"eslint": "^7.31.0",
"eslint-config-ezze": "^0.10.1",
"jest": "^27.0.6",
"jest-junit": "^12.2.0",
"raise-version": "^0.5.0",
"rimraf": "^3.0.2"
}
}