-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
55
56
{
"name": "kyanite",
"version": "1.0.0",
"description": "The best place to start your React Native project",
"main": "./lib/index.js",
"bin": {
"kyanite": "bin/kyanite"
},
"scripts": {
"start": "npm run build && npm run global",
"build": "npm run clean:some && tsc -p .",
"global": "npm i -g && kyanite",
"clean:some": "rm -rf ./lib ./docs",
"clean:all": "rm -rf ./node_modules ./package-lock.json ./lib ./docs",
"refresh": "npm run clean:all && npm install",
"tscov": "tscov --min-coverage 90",
"tscov:d": "tscov --details",
"publish-package": "npm run build && npm publish",
"docs": "typedoc --out docs ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RandomSoftwareSL/kyanite-cli.git"
},
"keywords": [
"cli",
"kyanite",
"react native"
],
"author": "Random Software - SL",
"license": "MIT",
"bugs": {
"url": "https://github.com/RandomSoftwareSL/kyanite-cli/issues"
},
"homepage": "https://github.com/RandomSoftwareSL/kyanite-cli#readme",
"dependencies": {
"@types/fs-extra": "^9.0.1",
"figlet": "^1.4.0",
"fs-extra": "^9.0.0",
"git-clone": "^0.1.0",
"inquirer": "^7.1.0",
"inversify": "^5.0.1",
"kleur": "^3.0.3",
"reflect-metadata": "^0.1.13",
"tslib": "^2.0.0"
},
"devDependencies": {
"@liftr/tscov": "^1.4.6",
"@types/figlet": "^1.2.0",
"@types/inquirer": "^6.5.0",
"@types/node": "^14.0.4",
"ts-node": "^8.10.1",
"typedoc": "^0.17.7",
"typescript": "^3.9.3"
}
}