-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 991 Bytes
/
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
{
"name": "react-two-cents",
"version": "0.1.3",
"description": "My input on input fields in React",
"main": "dist/react-two-cents.js",
"umd:main": "dist/react-two-cents.umd.js",
"module": "dist/react-two-cents.m.js",
"source": "build/index.js",
"author": "Nathan Force <[email protected]>",
"license": "MIT",
"scripts": {
"test": "echo \"No tests yet you lazy bum\"",
"babel": "babel --presets=react --plugins=transform-object-rest-spread --no-babelrc -d build src",
"build": "npm run -s babel && microbundle",
"dev": "microbundle watch"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-react": "^6.24.1",
"microbundle": "^0.4.4",
"prettier": "^1.13.5"
},
"peerDependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1"
}
}