-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 2.15 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
{
"name": "json-mirror-compiler",
"version": "0.4.12",
"description": "json mirror compiler",
"keywords": [
"mirror",
"json-pointer"
],
"author": "cxtom <[email protected]>",
"license": "ISC",
"main": "lib/index.js",
"browser": "lib/js/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/max-team/json-mirror-compiler.git"
},
"scripts": {
"prepublishOnly": "npm test && npm run build",
"build": "rm -rf lib && tsc && mkdir lib/php/runtime && cp src/php/runtime/MirrorUtil.php lib/php/runtime/",
"test": "jest"
},
"dependencies": {
"js-yaml": "^3.13.1",
"json5": "^2.1.0",
"lodash": "^4.17.15",
"ts-morph": "^2.3.0",
"typescript": "~3.4.5"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.5.0",
"@types/fs-extra": "^7.0.0",
"@types/jest": "^24.0.18",
"@types/json5": "0.0.30",
"@types/node": "^12.7.5",
"commitizen": "^3.1.2",
"conventional-changelog": "^3.1.10",
"conventional-changelog-cli": "^2.0.23",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"jest": "^24.9.0",
"jest-config": "^24.9.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1"
},
"jest": {
"verbose": true,
"preset": "ts-jest/presets/js-with-babel",
"testEnvironment": "node",
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__tests__/"
],
"moduleDirectories": [
"node_modules"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"src/**.ts"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}