-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 968 Bytes
/
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
{
"name": "arc-gen-beta",
"version": "1.0.9",
"description": "Generator functions for Architect",
"main": "index.js",
"bin": {
"arc-gen-beta": "cli.js"
},
"directories": {
"test": "test"
},
"eslintConfig": {
"extends": "@architect/eslint-config"
},
"scripts": {
"test": "tape ./test/*-test.js | tap-spec",
"lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beginner-corp/generators.git"
},
"author": "kj <kj@begin.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/beginner-corp/generators/issues"
},
"homepage": "https://github.com/beginner-corp/generators#readme",
"devDependencies": {
"tap-spec": "^2.2.2",
"tape": "^5.2.2"
},
"dependencies": {
"@architect/eslint-config": "^1.0.0",
"@architect/parser": "^3.0.1",
"eslint": "^7.25.0",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"yargs": "^17.0.1"
}
}