forked from kvz/fakefile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "fakefile",
"version": "0.0.10",
"description": "Install a Makefile into your node projects that acts as an npm run-script wrapper",
"scripts": {
"install": "node install.js",
"release:major": "env SEMANTIC=major npm run release",
"release:minor": "env SEMANTIC=minor npm run release",
"release:patch": "env SEMANTIC=patch npm run release",
"release": "npm version ${SEMANTIC:-patch} -m \"Release %s\" && git push --tags && git push && npm publish",
"fix": "eslint . --fix",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/kvz/fakefile.git"
},
"keywords": [
"Makefile",
"npmscripts"
],
"author": "Kevin van Zonneveld",
"license": "MIT",
"bugs": {
"url": "https://github.com/kvz/fakefile/issues"
},
"homepage": "https://github.com/kvz/fakefile#readme",
"dependencies": {
"fs-extra": "0.26.5"
},
"devDependencies": {
"eslint": "6.6.0",
"eslint-config-standard": "4.4.0",
"eslint-plugin-standard": "1.3.2"
}
}