-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.75 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
{
"name": "zan-utils",
"version": "0.0.5",
"engines": {
"node": ">=8.11.0"
},
"description": "Utilities for youzan front-end development",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"lint": "tslint -p tsconfig.json",
"cover": "istanbul cover ./node_modules/jest/bin/jest.js",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/wulv/zan-utils.git"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"author": "",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"@types/jest": "^23.3.2",
"babel-plugin-add-module-exports": "^1.0.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"del": "^3.0.0",
"esdoc": "^1.1.0",
"esdoc-brand-plugin": "^1.0.1",
"esdoc-coverage-plugin": "^1.1.0",
"esdoc-importpath-plugin": "^1.0.2",
"esdoc-inject-style-plugin": "^1.0.0",
"esdoc-publish-html-plugin": "^1.1.2",
"esdoc-standard-plugin": "^1.0.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-cli": "^2.0.1",
"gulp-connect": "^5.6.1",
"gulp-gh-pages": "^0.5.4",
"gulp-if": "^2.0.2",
"gulp-json-editor": "^2.4.2",
"gulp-newer": "^1.4.0",
"gulp-typescript": "^5.0.0-alpha.3",
"husky": "^1.1.2",
"istanbul": "^0.4.5",
"jest": "^23.4.2",
"merge2": "^1.2.3",
"prettier": "^1.14.3",
"ts-jest": "^23.10.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.0.1"
}
}