-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 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
46
47
48
49
50
51
52
53
54
55
{
"name": "as-a",
"description": "Runs a given command with additional environment settings for simple local development",
"main": "src/index.js",
"version": "0.0.0-development",
"scripts": {
"test": "ava test",
"test:watch": "ava test --watch",
"demo:dot": "node ./bin/as-a . node ./demo",
"demo": "node ./bin/as-a demo node ./demo",
"commit": "commit-wizard",
"semantic-release": "semantic-release"
},
"bin": {
"as-a": "bin/as-a.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/as-a.git"
},
"preferGlobal": true,
"keywords": [
"run",
"utility",
"environment",
"setting",
"config",
"tool"
],
"files": [
"bin",
"src"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/as-a/issues"
},
"homepage": "https://github.com/bahmutov/as-a#readme",
"dependencies": {
"check-more-types": "2.10.0",
"cross-spawn": "4.0.0",
"debug": "4.3.6",
"lazy-ass": "1.3.0",
"lodash": "4.17.21",
"simple-bin-help": "1.8.0",
"simple-ini": "1.0.4",
"user-home": "2.0.0"
},
"devDependencies": {
"ava": "6.1.3",
"prettier": "^3.1.1",
"semantic-release": "24.1.0"
}
}