-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 2.5 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "react-pose",
"version": "3.3.6",
"description": "A declarative animation library for React",
"main": "./lib/index.js",
"module": "./dist/react-pose.es.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rollup -c && npm run measure",
"watch": "rollup -c -w",
"test": "jest",
"measure": "gzip -c dist/react-pose.js | wc -c",
"prettier": "prettier ./src/* --write",
"prepublishOnly": "npm run prettier && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Popmotion/popmotion/tree/master/packages/react-pose"
},
"keywords": [
"animation",
"dom",
"declarative",
"popmotion",
"react",
"react animation"
],
"author": "Matt Perry",
"license": "MIT",
"presets": [
"env"
],
"peerDependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"devDependencies": {
"@types/enzyme": "^3.1.13",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/react": "^16.3.16",
"@types/react-dom": "^16.0.7",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.4.0",
"jest": "^23.6.0",
"jest-enzyme": "^6.0.4",
"prettier": "1.11.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"rollup": "^0.59.1",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript2": "^0.14.0",
"rollup-plugin-uglify": "^3.0.0"
},
"dependencies": {
"@emotion/is-prop-valid": "^0.6.5",
"hey-listen": "^1.0.5",
"popmotion-pose": "nkov/popmotion-pose#master",
"react-is": "^16.5.1",
"tslib": "^1.9.1"
},
"unpkg": "./dist/react-pose.js",
"prettier": {
"parser": "typescript",
"singleQuote": true
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "../../../node_modules/ts-jest/preprocessor.js"
},
"moduleNameMapper": {
"@popmotion/easing": "<rootDir>/../../easing/src",
"popmotion-pose": "<rootDir>/../../popmotion-pose/src",
"popmotion": "<rootDir>/../../popmotion/src",
"pose-core": "<rootDir>/../../pose-core/src",
"style-value-types": "<rootDir>/../../style-value-types/src",
"stylefire": "<rootDir>/../../stylefire/src",
"framesync": "<rootDir>/../../framesync/src"
},
"testRegex": "/_tests/.*\\.(ts|tsx|js)$",
"rootDir": "src",
"globals": {
"ts-jest": {
"tsConfigFile": "../tsconfig.jest.json"
}
}
}
}