-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.04 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
{
"name": "@ssalka/coinvert",
"version": "0.1.1",
"description": "Node.js CLI for quick and easy cryptocurrency conversions",
"author": "Steven Salka <[email protected]>",
"license": "MIT",
"repo": "github:ssalka/coinvert",
"main": "dist/coinvert",
"bin": "./dist/coinvert",
"preferGlobal": true,
"scripts": {
"build": "webpack",
"lint": "tslint -c tslint.json -p tsconfig.json -t stylish",
"lint:all": "npm run lint -- 'src/**/*.ts' 'test/**/*.ts'",
"test": "NODE_ENV=test NODE_PATH=. jest -c jest.json --noStackTrace"
},
"dependencies": {
"commander": "^2.16.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.10"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/lodash": "^4.14.115",
"@types/node": "^10.5.5",
"fork-ts-checker-webpack-plugin": "^0.4.3",
"jest": "^23.4.2",
"ts-jest": "^23.0.1",
"ts-loader": "^4.4.2",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^3.0.1",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0"
}
}