This repository has been archived by the owner on Jan 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 1.93 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "battlecry",
"version": "0.3.6",
"keywords": [
"generate",
"scaffold",
"templates",
"boilerplate"
],
"description": "A simple and customizable scaffolding tool for all languages and frameworks",
"main": "src/index.js",
"repository": "https://pedsmoreira@github.com/pedsmoreira/battlecry.git",
"author": "Pedro S. Moreira <pedsmoreira@gmail.com>",
"license": "MIT",
"bin": {
"cry": "./bin/battlecry.js",
"battlecry": "./bin/battlecry.js"
},
"files": [
"bin",
"battlecry",
"src",
".babelrc"
],
"scripts": {
"dev": "docsify serve docs",
"test": "jest",
"test:coverage": "jest --coverage",
"test:ci": "npm run test:coverage",
"precommit": "lint-staged",
"prettier": "prettier --write src/**/*.js",
"flow": "flow",
"flow:check": "flow check ./src/",
"flow:deps": "flow-typed install",
"preversion": "npm test",
"version": "git add package.json",
"postversion": "git push && git push --tags"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"casex": "^1.0.0",
"chalk": "^2.4.1",
"commander": "^2.15.1",
"download-git-repo": "^1.0.2",
"glob": "^7.1.2",
"isbinaryfile": "^3.0.3",
"pluralize": "^7.0.0",
"rimraf": "^2.6.2",
"tmp": "^0.0.33"
},
"devDependencies": {
"babel-jest": "^22.4.3",
"docsify-cli": "^4.3.0",
"flow-bin": "^0.69.0",
"flow-typed": "^2.4.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^8.1.0",
"prettier": "^1.11.1"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
}
}