-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "@hnzycfcfed/get-url-params",
"version": "1.0.1",
"description": "获取 url 中的参数",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"test": "jest",
"watch": "rollup -c -w",
"build": "NODE_ENV=development rollup -c",
"pub": "NODE_ENV=production rollup -c && npm publish --access public"
},
"author": "Daniel.Zhao,Thestral.Li",
"files": [
"dist",
"lib",
"es",
"index.d.ts"
],
"typings": "index.d.ts",
"keywords": [
"url params",
"get url params",
"get url parameters",
"get-url-params"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^5.8.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-import": "^2.13.0",
"jest": "^23.6.0",
"regenerator-runtime": "^0.12.1",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.1",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^6.0.0"
}
}