-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.19 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
{
"name": "relax-utils",
"version": "2.1.10",
"description": "Javascript util methods.",
"files": [
"dist/"
],
"keywords": [
"utils",
"util",
"tool",
"tools",
"helper",
"date",
"dateFormat",
"dateParse",
"dateAdd",
"cookie",
"promisify",
"browser",
"retry",
"throttle",
"debounce",
"relax",
"wwl",
"wangwl"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"test": "karma start karma.conf.js",
"build": "rm -rf dist && NODE_ENV=production rollup -c",
"dev": "rm -rf dist && NODE_ENV=development rollup -c -w"
},
"author": "wangwl",
"license": "ISC",
"homepage": "http://wangwl.net/static/pages/mynpm_utils.html",
"bugs": {
"url": "https://github.com/relax-code-relax-life/utils/issues"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.3",
"jasmine-core": "^4.5.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-jasmine": "^5.1.0",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.9.5"
}
}