-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.56 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
57
58
{
"name": "@workablehr/oneflow",
"version": "1.6.0",
"description": "OneFlow cli tool",
"main": "build/lib/index.js",
"repository": "Workable/oneflow",
"scripts": {
"clean": "rm -rf ./build",
"prebuild": "npm run clean",
"build": "tsc",
"prewatch": "npm run clean",
"watch": "tsc -w",
"prepublishOnly": "npm test",
"lint": "tslint src/**/*.ts",
"pretest": "npm run lint && npm run build",
"test": "nyc mocha -r ts-node/register -r tsconfig-paths/register -r source-map-support/register src/test/index.ts src/test/*.ts --recursive -R spec --timeout 30000"
},
"engines": {
"node": ">= 6.0.0"
},
"bin": {
"oneflow": "bin/oneflow"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true
},
"author": "Nikos Kostoulas <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"commander-tabtab": "^0.1.0",
"figlet": "1.2.3",
"home-config": "^0.1.0",
"inquirer": "6.3.1",
"moment": "^2.24.0",
"semver": "^6.1.1",
"tsconfig-paths": "^3.8.0",
"typescript": "^3.5.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/figlet": "^1.2.0",
"@types/inquirer": "6.0.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.8",
"@types/semver": "^6.0.0",
"@types/sinon": "^9.0.5",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"should": "^13.2.3",
"sinon": "^9.0.3",
"source-map-support": "^0.5.12",
"ts-node": "^8.2.0",
"tslint": "^5.17.0"
}
}