-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.6 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
{
"name": "gulp-path-alias",
"version": "1.2.0",
"description": "path alias",
"main": "lib/index.js",
"scripts": {
"test": "ava",
"build": "rimraf lib && tsc",
"release-major": "npm run build && standard-version --release-as major",
"release-minor": "npm run build && standard-version --release-as minor",
"release": "npm run build && standard-version --release-as patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CryUshio/gulp-path-alias.git"
},
"keywords": [
"gulp",
"gulpplugin",
"alias",
"path",
"replace",
"别名",
"路径",
"替换"
],
"author": {
"name": "CryUshio",
"email": "[email protected]",
"url": "https://github.com/CryUshio"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/CryUshio/gulp-path-alias/issues"
},
"homepage": "https://github.com/CryUshio/gulp-path-alias#readme",
"engines": {
"node": ">=8"
},
"files": [
"lib/index.js",
"lib/index.d.ts",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
},
"devDependencies": {
"@types/node": "^14.14.19",
"@types/replacestream": "^4.0.0",
"@types/through2": "^2.0.36",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"ava": "^3.13.0",
"eslint": "^7.18.0",
"gulp": "^4.0.2",
"husky": "^4.3.7",
"rimraf": "^3.0.2",
"standard-version": "^9.1.0",
"typescript": "^4.1.3"
},
"dependencies": {
"replacestream": "^4.0.3",
"slash": "^3.0.0"
}
}