-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "@sunify/lerp-color",
"version": "2.0.0",
"main": "dist/index.js",
"license": "MIT",
"repository": "git@github.com:sunify/lerp-color.git",
"author": "Alex Lunyov <isuntc@gmail.com>",
"dependencies": {
"@types/hex-rgb": "^3.0.0",
"@types/rgb-hex": "^2.1.0",
"hex-rgb": "^3.0.0",
"lerp-array": "^1.1.1",
"rgb-hex": "^2.1.0"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"eases": "^1.0.8",
"jest": "^24.0.0",
"parcel-bundler": "1.12.3",
"parcel-plugin-svelte": "^3.0.1",
"size-limit": "^0.21.1",
"svelte": "^3.3.0",
"ts-jest": "^23.10.5",
"typescript": "^3.2.4"
},
"browserslist": [
"last 5 chrome versions"
],
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"prebuild": "rm -rf dist && mkdir dist",
"build": "yarn prebuild && tsc && yarn size",
"prepublish": "yarn build",
"size": "size-limit",
"start-demo": "parcel index.html --no-hmr --open --out-dir=demo",
"build-demo": "parcel build --out-dir=demo --public-url '.' index.html"
}
}