-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "animated.macro",
"version": "0.0.0-development",
"description": "A tiny language for arithmetic over React Native's Animated values.",
"main": "index.js",
"react-native": {
"./index.js": "dist/runtime/index.js"
},
"scripts": {
"test": "jest",
"build": "babel -d dist src --source-maps --ignore \"**/__tests__/**\"",
"semantic-release": "npm run build && semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/motiz88/animated.macro.git"
},
"keywords": [
"react-native",
"animated",
"babel-plugin-macros",
"babel-plugin"
],
"author": "Moti Zilberman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/motiz88/animated.macro/issues"
},
"homepage": "https://github.com/motiz88/animated.macro#readme",
"peerDependencies": {
"react-native": ">=0.17.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-tester": "^5.0.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react-native": "^4.0.0",
"jest": "^22.2.2",
"jest-in-case": "^1.0.2",
"react": "^16.2.0",
"react-native": "^0.53.0",
"semantic-release": "^12.4.1"
},
"dependencies": {
"babel-plugin-macros": "^2.1.0",
"make-error": "^1.3.3"
},
"engines": {
"node": ">= 6"
}
}