-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.24 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
{
"name": "meta-loop",
"version": "0.0.0-development",
"description": "module to locate a meta project's .meta file, and execute a provided command within the meta project's and all child projects' directories",
"main": "index.js",
"bin": {
"meta-exec": "./bin/meta-exec",
"meta-loop": "./bin/meta-loop"
},
"scripts": {
"commit": "git-cz",
"lint": "prettier --write \"bin/*\" index.js",
"test": "jest --config jest.json --coverage",
"test:coverage": "jest --config jest.json --coverage",
"test:watch": "jest --config jest.json --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mateodelnorte/meta-loop.git"
},
"author": "hi@iammattwalters.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/mateodelnorte/meta-loop/issues"
},
"homepage": "https://github.com/mateodelnorte/meta-loop#readme",
"dependencies": {
"debug": "^4.3.2",
"get-meta-file": "^1.3.5",
"loop": "^3.3.5"
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"husky": "6.0.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"pretty-quick": "3.1.0"
}
}