-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
54 lines (54 loc) · 1.23 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
{
"name": "react-curved-arrow",
"version": "0.0.9",
"description": "Curvy arrows for your React project!",
"main": "dist/CurvedArrow.js",
"scripts": {
"build": "babel src --out-dir dist",
"clean": "rm -rf dist && mkdir -p dist",
"serve": "babel --watch 'src' --out-dir 'dist'",
"prepublish": "npm run-script build"
},
"files": [
"/src",
"/dist"
],
"author": "Nick Janssen <[email protected]> (https://laska.io)",
"license": "MIT",
"dependencies": {
"react": "16.12.0"
},
"babel": {
"plugins": [
"transform-react-jsx",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
],
"presets": [
[
"@babel/env",
{
"targets": {
"node": "6.11.5"
}
}
]
],
"ignore": [
"src/test"
]
},
"jest": {
"transform": {},
"rootDir": "src",
"verbose": true
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.51",
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.0.0-beta.51",
"babel-plugin-transform-react-jsx": "^6.24.1"
},
"gitHead": "7f4bff022c71a706022c7e60d2288b222582af3d"
}