-
Notifications
You must be signed in to change notification settings - Fork 139
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
50
51
52
{
"name": "flip-toolkit",
"version": "7.2.4",
"description": "Configurable FLIP animation helpers",
"license": "MIT",
"src": "src/index.ts",
"main": "lib/index.js",
"umd:main": "lib/index.umd.js",
"module": "lib/index.es.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/aholachek/react-flip-toolkit"
},
"bugs": "https://github.com/aholachek/react-flip-toolkit/issues",
"author": "Alex Holachek",
"keywords": [
"FLIP",
"transition",
"animation"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "microbundle --name=FlipToolkit --define process.env.NODE_ENV=production --globals rematrix=Rematrix",
"build:debug": "microbundle --name=FlipToolkit --no-compress",
"lint": "echo \"noop\"",
"test": "echo \"noop\"",
"test:dom": "parcel mocha/testrunner.html",
"start": "parcel test/index.html",
"prepare": "npm run build",
"format": "npx prettier --write 'src/**/*.{ts,tsx}'",
"fix": "eslint src/**/*.ts --fix",
"format-and-fix": "npm-run-all format fix"
},
"dependencies": {
"rematrix": "0.2.2"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"chai": "^4.4.1",
"microbundle": "^0.15.1",
"mocha": "^8.4.0",
"parcel": "^1.12.4",
"prettier": "2.8.8"
},
"files": [
"lib"
]
}