-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
80 lines (80 loc) · 2.12 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
{
"name": "windlike-utils",
"version": "2.1.6",
"description": "Windlike-Utils is a tool library developed based on functional programming ideas.",
"sideEffects": false,
"main": "./dist/utils.js",
"scripts": {
"test": "jest",
"debug": "node --inspect-brk node_modules/jest/bin/jest.js --runInBand",
"dev": "tsc -w --downlevelIteration",
"start": "node index",
"build": "tsc -d && gulp build",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"log": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0",
"prepublish": "yarn test && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrWindlike/Windlike-Utils.git"
},
"keywords": [
"utils",
"tool"
],
"author": "Windlike",
"license": "ISC",
"bugs": {
"url": "https://github.com/MrWindlike/Windlike-Utils/issues"
},
"homepage": "https://github.com/MrWindlike/Windlike-Utils#readme",
"devDependencies": {
"@types/jest": "^23.3.0",
"awesome-typescript-loader": "^3.4.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-runtime": "^6.26.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.2.0",
"eslint-plugin-typescript": "^0.12.0",
"ghooks": "^2.0.4",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-uglify": "^3.0.0",
"jest": "^23.4.1",
"source-map-loader": "^0.2.3",
"ts-jest": "^23.0.1",
"typescript": "^2.6.2",
"typescript-eslint-parser": "^17.0.1",
"validate-commit-msg": "^2.14.0"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "yarn run eslint && yarn test",
"commit-msg": "validate-commit-msg"
}
}
}