mirror of
https://github.com/kusti8/proton-native.git
synced 2026-05-15 14:15:50 -06:00
- 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
20 lines
440 B
JSON
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"
|
|
}
|