-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "color-lighten-tool",
"version": "1.0.2",
"description": "Make color lighten, like add opacity and white background.",
"repository": {
"type": "git",
"url": "[email protected]:OldDream/color-lighten-tool.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"scripts": {
"build": "rollup -c",
"server": "ws -p 3000 --static.index test.html",
"test": "jest"
},
"jest": {
"setupFilesAfterEnv": [
"./setupTests.js"
]
},
"keywords": [
"lighten",
"color",
"rgb",
"browser",
"typescript"
],
"author": "Old_dream",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/jest": "^26.0.23",
"jest": "^27.0.4",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.51.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.2"
},
"browserslist": [
"iOS >= 8",
"Android >= 4.4.4"
]
}