-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "ok-runner",
"version": "1.0.0",
"description": "A task runner that works just fine",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/tiaanduplessis/ok-runner.git"
},
"homepage": "https://github.com/tiaanduplessis/ok-runner",
"bugs": "https://github.com/tiaanduplessis/ok-runner/issues",
"author": {
"name": "Tiaan",
"email": "tiaanduplessis@hotmail.com",
"url": "tiaanduplessis.co.za"
},
"bin": {
"ok": "cli.js"
},
"scripts": {
"start": "npm run dev",
"pretest": "npm run lint:fix",
"test": "jest --env=node",
"test:watch": "npm test -- --watch",
"coverage": "npm test -- --coverage",
"lint": "standard --verbose",
"lint:fix": "standard --fix --verbose",
"precommit": "npm test"
},
"keywords": [
"task-runner",
"build-tool",
"scripts",
"ok-runner"
],
"dependencies": {
"chalk": "^1.1.3",
"get-them-args": "^1.2.1",
"npm-run-path": "^2.0.2",
"shelljs": "^0.7.7"
},
"devDependencies": {
"husky": "^0.13.2",
"jest": "^19.0.2",
"standard": "^9.0.0"
}
}