-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "fakefile",
"version": "1.1.0",
"engines": {
"node": ">=10.0.0",
"yarn": ">=1.0.0 <2.0.0"
},
"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",
"test:foo-bar": "echo baz",
"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": {
"babel-eslint": "10.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint": "7.11.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-standard": "4.0.1"
}
}