-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.02 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.02 KB
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
{
"name": "fetools-utils",
"version": "0.0.8",
"description": "",
"main": "dist/index.js",
"module": "dist/any-touch.esm.js",
"types": "@types/fetools/index.d.ts",
"files": [
"dist/**/*",
"@types/*"
],
"scripts": {
"test": "jest",
"coverage": "open ./coverage/lcov-report/index.html",
"tslint": "tslint --project tsconfig.json",
"pre-commit": "npm run tslint",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"build": "tsc && ./node_modules/.bin/rollup -c",
"patch": "npm version patch && npm run changelog && npm run build && npm publish",
"minor": "npm version minor && npm run changelog && npm run build && npm publish",
"major": "npm version major && npm run changelog && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iyolee/fetools.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "npm run pre-commit"
}
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/iyolee/fetools/issues"
},
"homepage": "https://github.com/iyolee/fetools#readme",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@types/jest": "^24.0.19",
"babel-jest": "^24.9.0",
"conventional-changelog-cli": "^2.0.25",
"husky": "^3.0.9",
"jest": "^24.9.0",
"rollup": "^1.25.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.3",
"ts-jest": "^24.1.0",
"tslib": "^1.10.0",
"tslint": "^5.14.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.4",
"validate-commit-msg": "^2.14.0"
},
"dependencies": {}
}