proton-native/examples/Notepad/package.json
Niklas Mischkulnig 7d985e4d3e Fix package.json files (#63)
- put build tools into devDependencies (closes #62)
- Silence `warning package.json: License should be a valid SPDX license expression`
- `./node_modules/.bin/` isn't needed in npm scripts
- make Demo.js look better
2018-03-22 09:50:17 -04:00

20 lines
440 B
JSON

{
"name": "notepad",
"version": "1.0.0",
"description": "a notepad app built using proton-native",
"main": "index.js",
"scripts": {
"start": "babel-node index.js"
},
"dependencies": {
"proton-native": "^1.0.11"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1"
},
"author": "",
"license": "ISC"
}