generated from CourseDesign/node-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.41 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
{
"name": "conev-sync",
"version": "1.0.5",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"run": "node dist/index.js",
"prepublishOnly": "npm run build:production",
"build": "gulp",
"build:production": "cross-env NODE_ENV=production npm run build",
"build:all": "script/run-command-all-package.sh run build",
"build:production:all": "script/run-command-all-package.sh run build:production",
"lint": "eslint . --resolve-plugins-relative-to .",
"lint:fix": "eslint --fix . --resolve-plugins-relative-to .",
"lint:staged": "lint-staged",
"test": "jest",
"install:all": "script/run-command-all-package.sh install",
"package:init": "script/init-package.sh package",
"package:neon:init": "script/init-neon-package.sh package",
"package:version:patch": "script/run-command-all-package.sh version patch",
"neon": "neon",
"eslint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CourseDesign/conev-sync.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CourseDesign/conev-sync/issues"
},
"homepage": "https://github.com/CourseDesign/conev-sync#readme",
"husky": {
"hooks": {
"pre-push": "npm run test",
"pre-commit": "npm run lint:staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"modulePathIgnorePatterns": [
"dist"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.15.2",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"gulp": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^6.0.0",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"neon-cli": "^0.8.0",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"dependencies": {
"conev-sync-core": "^1.0.5",
"conev-sync-json-source": "^1.0.4"
}
}