-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 998 Bytes
/
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
{
"name": "object-transit",
"version": "1.4.0",
"main": "dist/index.js",
"author": "Alex Lunyov <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.13",
"jest": "^24.0.0",
"parcel-bundler": "^1.11.0",
"size-limit": "^0.21.1",
"ts-jest": "^23.10.5",
"typescript": "^3.2.4"
},
"dependencies": {
"@sunify/lerp-color": "^1.0.0",
"lerp": "^1.0.3",
"tweeen": "1.0.5"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "./node_modules/.bin/jest --passWithNoTests",
"test:watch": "./node_modules/.bin/jest --watch",
"prebuild": "rm -rf dist && mkdir dist",
"build": "yarn prebuild && ./node_modules/.bin/tsc",
"prepublish": "yarn build",
"start-demo": "./node_modules/.bin/parcel index.html --open --out-dir=demo",
"build-demo": "./node_modules/.bin/parcel build --out-dir=demo --public-url '.' index.html"
},
"repository": "[email protected]:sunify/object-transit.git"
}