-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "loop",
"version": "0.0.0-development",
"description": "loop through commands in fun and amazing ways!",
"main": "./index.js",
"bin": {
"loop": "./bin/loop"
},
"scripts": {
"commit": "git-cz",
"lint": "prettier --write \"bin/*\" index.js",
"test": "npm run test-jest && npm run test-mocha",
"test-jest": "jest --config jest.json --coverage",
"test:coverage": "jest --config jest.json --coverage",
"test:watch": "jest --config jest.json --watch",
"test-mocha": "mocha"
},
"keywords": [
"loop",
"command",
"commands"
],
"author": "hi@iammwattwalters.com",
"repository": {
"type": "git",
"url": "git://github.com/mateodelnorte/loop.git"
},
"license": "ISC",
"dependencies": {
"async": "^3.2.0",
"chalk": "^3.0.0",
"debug": "^4.3.2",
"lodash": "^4.17.21",
"meta-exec": "^1.4.2",
"should": "^13.2.3",
"yargs": "^14.2.3"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"chai": "4.3.6",
"husky": "6.0.0",
"jest": "26.6.3",
"mkdirp": "0.5.6",
"mocha": "9.2.2",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"tmp": "0.2.1",
"which": "1.3.1"
}
}