-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "@yuewen/wnjs",
"version": "0.0.1-beta.0",
"description": "A collection of utility libraries used by webnovel",
"main": "dist/wnjs.umd.js",
"module": "dist/wnjs.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"commit": "git-cz",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "tslint 'src/**/*.ts'",
"build": "rimraf dist && tsc && rollup -c rollup.config.js",
"doc": "typedoc --out docs --target es6 --mode file src"
},
"files": [
"src",
"dist",
"README.md"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-typescript": "7.0.0",
"@types/jest": "23.3.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.4.2",
"cz-conventional-changelog": "2.1.0",
"husky": "1.0.0-rc.13",
"jest": "23.5.0",
"prettier": "1.14.2",
"pretty-quick": "1.6.0",
"rollup": "0.64.1",
"rollup-plugin-babel": "4.0.0-beta.8",
"rollup-plugin-commonjs": "9.1.5",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-sourcemaps": "0.4.2",
"tslint": "5.11.0",
"tslint-config-prettier": "1.14.0",
"tslint-eslint-rules": "5.4.0",
"typedoc": "0.12.0",
"typescript": "3.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}