-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.35 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
{
"name": "better-js-lib",
"version": "2.3.6",
"description": "jslib最好用的js库脚手架",
"main": "lib/index.js",
"jsnext:main": "lib/index.js",
"module": "es/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"clean": "rimraf ./es ./lib",
"test:some": "cross-env NODE_ENV=test nyc mocha ./test/getUrlString.test.js",
"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",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"build": "npm run clean && rollup -c rollup.config.js"
},
"author": "bluescurry",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SFTC/better-js-lib"
},
"bugs": {
"url": "https://github.com/SFTC/better-js-lib/issues"
},
"files": [
"/es",
"/lib",
"*.d.ts"
],
"engines": {
"node": ">= 0.12.0"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.10.5",
"@js-lib/cli": "^1.6.0",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.2",
"babel-plugin-istanbul": "5.1.0",
"coveralls": "3.0.2",
"cross-env": "5.2.0",
"es5-shim": "4.5.10",
"eslint": "^5.15.1",
"eslint-plugin-html": "^6.0.3",
"expect.js": "0.3.1",
"foreach": "^2.0.5",
"make-generator-function": "^2.0.0",
"mocha": "^8.1.3",
"mocha-jsdom": "^2.0.0",
"nyc": "13.1.0",
"rimraf": "2.6.2",
"rollup": "^2.26.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "8.3.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-multi-input": "^1.1.1",
"rollup-plugin-node-resolve": "3.0.3",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.2",
"source-map-support": "0.5.9",
"ts-node": "7.0.1",
"tslib": "^2.0.1",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/lodash.clonedeep": "^4.5.6",
"dayjs": "^1.9.7",
"emoji-regex": "^9.0.0",
"lodash.clonedeep": "^4.5.0",
"number-precision": "^1.5.0"
}
}