-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 971 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
35
36
37
38
39
40
41
{
"name": "@fivethree/create-ionic",
"version": "0.1.0",
"description": "billy example app / boilerplate",
"repository": {
"type": "git",
"url": "https://github.com/fivethree-team/create-ionic"
},
"main": "dist/index.js",
"scripts": {
"build": "node_modules/.bin/tsc -p .",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"test": "npm i -g && create-ionic"
},
"bin": {
"create-ionic": "dist/index.js"
},
"preferGlobal": false,
"keywords": [
"typescript",
"cli",
"node",
"terminal"
],
"author": "fivethree",
"license": "MIT",
"devDependencies": {
"@types/node": "^10.12.18",
"nodemon": "^1.18.9",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"dependencies": {
"@fivethree/billy-core": "0.15.1",
"@fivethree/billy-plugin-core": "0.15.1"
},
"files": [
"dist"
]
}