-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 KB
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
{
"name": "@sunday9787/load-script",
"version": "1.0.0",
"description": "异步加载script",
"keywords": [
"异步加载script",
"加载script"
],
"author": {
"name": "Sunday9787",
"email": "809537981@qq.com",
"url": "http://sunday90.com"
},
"main": "lib/main.esm.js",
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"@types"
],
"types": "@types/index.d.ts",
"license": "MIT",
"scripts": {
"bootstrap": "yarn || npm i",
"build": "NODE_ENV=node rollup -c rollup.config.js",
"build:release": "NODE_ENV=browser rollup -c rollup.config.js",
"test": "jest",
"release": "standard-version"
},
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@types/jest": "^27.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"rollup": "^2.56.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify-es": "^0.0.1",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.4",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
}
}