-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "toread",
"version": "1.0.0",
"description": "To Read Project",
"main": "index.js",
"scripts": {
"start": "node lib/index.js",
"type-check": "tsc --noEmit",
"build": "npm run build-types && npm run build-js",
"build-types": "tsc --emitDeclarationOnly",
"build-js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"test": "jest",
"testWithCoverage": "jest --coverage"
},
"bin": {
"to-read": "./lib/index.js"
},
"author": "Leonardo Teteo",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@types/jest": "^23.3.9",
"babel-preset-minify": "^0.5.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.4",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"dependencies": {
"@akanass/rx-http-request": "^3.1.0",
"@types/inquirer": "0.0.43",
"@types/jsdom": "^11.12.0",
"@types/opn": "^5.1.0",
"colors": "^1.3.2",
"commander": "^2.19.0",
"inquirer": "^6.2.0",
"jsdom": "^12.2.0",
"opn": "^5.4.0",
"rxjs": "^6.3.3"
}
}