-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.64 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.64 KB
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
{
"name": "create-typescript-api",
"version": "1.1.2",
"description": "A simple CLI to create a Typescript basic project to develop APIs",
"main": "bin/index.js",
"bin": {
"create-typescript-api": "./bin/index.js"
},
"scripts": {
"clean": "rimraf ./bin",
"compile": "babel ./src -d ./bin",
"build": "yarn run clean && yarn run compile",
"prettier": "./node_modules/.bin/prettier --tab-width 4 --print-width 120 --single-quote --write 'src/**/*.js'",
"start": "./node_modules/.bin/babel-node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"url": "git+https://github.com/BlackBoxVision/create-typescript-api.git",
"type": "git"
},
"keywords": [
"CLI",
"TypeScript",
"APIs"
],
"author": "BlackBox Vision",
"contributors": [
"Jonatan E. Salas <jonatansalas@live.com.ar>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/BlackBoxVision/create-typescript-api/issues"
},
"homepage": "https://github.com/BlackBoxVision/create-typescript-api#readme",
"dependencies": {
"commander": "^2.11.0",
"ink": "^0.2.1",
"ink-progress-bar": "^2.0.0",
"ink-spinner": "^1.0.0",
"isomorphic-fetch": "^2.2.1",
"progress-stream": "^2.0.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"unzip": "^0.1.11"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"prettier": "^1.5.2",
"rimraf": "^2.6.1"
}
}