-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·58 lines (58 loc) · 1.46 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
{
"name": "logger",
"version": "0.0.0",
"license": "MIT",
"engines": {
"node": ">=9.11.2"
},
"files": [
"dist"
],
"main": "dist/logger.js",
"scripts": {
"build": "rollup -c",
"clean:dist": "rimraf dist",
"dev": "npm run build -- -w",
"docs": "typedoc",
"lint": "tslint --project .",
"lint:fix": "npm run lint -- --fix",
"postversion": "git push --tags origin HEAD",
"prebuild": "npm run clean:dist",
"prepublishOnly": "npm run build",
"preversion": "npm run lint",
"test": "",
"version-from-branch": "node ./version-from-branch.js",
"ci-cache": "node ./ci-cache.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run ci-cache"
}
},
"dependencies": {
"core-js": "^3.6.5",
"js-cookie": "2.2.0",
"lodash.throttle": "4.1.1"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.3",
"babel-loader": "^8.1.0",
"husky": "1.3.1",
"md5": "^2.2.1",
"rimraf": "2.6.3",
"rollup": "1.6.0",
"rollup-plugin-commonjs": "9.2.1",
"rollup-plugin-json": "3.1.0",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-resolve": "4.0.1",
"rollup-plugin-typescript3": "1.1.2",
"tslint": "5.15.0",
"typedoc": "0.14.2",
"typescript": "3.4.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}