-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
82 lines (82 loc) · 2.77 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "baselib",
"version": "0.1.0",
"description": "jslib最好用的js库脚手架",
"main": "dist/index.js",
"jsnext:main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"sideEffects": false,
"scripts": {
"clean": "rimraf ./dist",
"test": "npm run lint && nyc mocha",
"release": "npm test && npm run build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags",
"lint": "eslint -c .eslintrc.js 'src/**/*.ts'",
"lint:fix": "eslint -c .eslintrc.js 'src/**/*.ts' --fix",
"build:self": "rollup -c config/rollup.config.js",
"build:esm": "rollup -c config/rollup.config.esm.js",
"build:aio": "rollup -c config/rollup.config.aio.js",
"build:aio.min": "cross-env NODE_ENV=production npm run build:aio",
"build": "npm run clean && npm run build:self && npm run build:esm && npm run build:aio && npm run build:aio.min",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"build:docs": "typedoc --tsconfig ./tsconfig.json"
},
"author": "liusixin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/lsxlsxxslxsl/baselib.git"
},
"bugs": {
"url": "https://github.com/lsxlsxxslxsl/baselib/issues"
},
"files": [
"/dist",
"*.d.ts"
],
"engines": {
"node": ">= 0.12.0"
},
"devDependencies": {
"@js-lib/cli": "^1.6.0",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"@vuepress/core": "^1.7.1",
"@vuepress/markdown-loader": "^1.7.1",
"@vuepress/plugin-active-header-links": "^1.7.1",
"@vuepress/plugin-back-to-top": "^1.7.1",
"@vuepress/plugin-last-updated": "^1.7.1",
"@vuepress/plugin-medium-zoom": "^1.7.1",
"@vuepress/plugin-nprogress": "^1.7.1",
"@vuepress/plugin-register-components": "^1.7.1",
"@vuepress/plugin-search": "^1.7.1",
"@vuepress/theme-vue": "^1.7.1",
"babel-plugin-istanbul": "5.1.0",
"coveralls": "3.0.2",
"cross-env": "5.2.0",
"es5-shim": "4.5.10",
"eslint": "^5.15.1",
"expect.js": "0.3.1",
"mocha": "3.5.3",
"nyc": "13.1.0",
"rimraf": "2.6.2",
"rollup": "0.57.1",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "8.3.0",
"rollup-plugin-node-resolve": "3.0.3",
"rollup-plugin-typescript2": "0.18.0",
"rollup-plugin-uglify": "1.0.0",
"source-map-support": "0.5.9",
"ts-node": "7.0.1",
"tslib": "1.9.3",
"typedoc": "^0.19.2",
"typedoc-plugin-markdown": "^3.0.11",
"typescript": "^4.0.5",
"vuepress": "^1.7.1",
"vuepress-plugin-container": "^2.1.5",
"vuepress-plugin-smooth-scroll": "0.0.10",
"vuepress-plugin-typedoc": "^0.1.1"
},
"dependencies": {}
}