-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
102 lines (102 loc) · 2.34 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "jsonc",
"version": "2.0.0",
"description": "Everything you need in JSON land. Parse JSON with comments, stringify objects with circular references, etc...",
"author": "Onur Yıldırım <[email protected]>",
"license": "MIT",
"homepage": "https://onury.io/jsonc",
"repository": "onury/jsonc",
"main": "index.js",
"files": [
"lib",
"index.js",
"LICENSE"
],
"types": "./lib/jsonc.d.ts",
"engines": {
"node": ">=8"
},
"scripts": {
"clean": "rimraf ./lib",
"build": "npm run clean && npm run cover && mkdirp ./lib && tsc",
"test": "jest --verbose --no-cache",
"cover": "jest --coverage --verbose --no-cache",
"coveralls": "cat ./test/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v",
"report": "open ./test/coverage/lcov-report/index.html",
"docs": "docma -c ./docma.json"
},
"jest": {
"testEnvironment": "node",
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"roots": [
"<rootDir>/src",
"<rootDir>/lib",
"<rootDir>/test"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"testPathIgnorePatterns": [
"/backup/",
"/helpers/",
"/coverage/"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/interfaces.ts"
],
"coverageDirectory": "./test/coverage"
},
"keywords": [
"json",
"object",
"notation",
"safe",
"stringify",
"parse",
"read-file",
"write-file",
"comments",
"circular",
"cyclic",
"console",
"log",
"uglify",
"beautify",
"typescript"
],
"dependencies": {
"fast-safe-stringify": "^2.0.6",
"graceful-fs": "^4.1.15",
"mkdirp": "^0.5.1",
"parse-json": "^4.0.0",
"strip-bom": "^4.0.0",
"strip-json-comments": "^3.0.1"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/mkdirp": "^0.5.2",
"@types/node": "^12.0.8",
"@types/parse-json": "^4.0.0",
"@types/strip-bom": "^4.0.1",
"@types/strip-json-comments": "0.0.30",
"coveralls": "^3.0.4",
"docma": "^3.2.2",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
}
}