forked from aholachek/react-flip-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "flip-toolkit",
"version": "7.0.13",
"description": "Configurable FLIP animation helpers",
"license": "MIT",
"src": "src/index.ts",
"main": "lib/index.js",
"umd:main": "lib/${bundleName}/index.umd.js",
"module": "lib/index.es.js",
"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",
"build:debug": "microbundle --name=FlipToolkit --no-compress",
"lint": "echo \"noop\"",
"test": "echo \"noop\"",
"test:dom": "parcel mocha/testrunner.html",
"start": "parcel test/index.html",
"prepublish": "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.12.3",
"chai": "^4.2.0",
"microbundle": "^0.12.4",
"mocha": "^8.2.1",
"parcel": "^1.12.4",
"prettier": "2.1.2"
}
}