-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.22 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
{
"name": "create-npm",
"version": "0.0.21",
"description": "Bootstrap npm packages",
"keywords": [
"npm",
"bootstrap"
],
"homepage": "https://github.com/vinsonchuong/create-npm",
"bugs": "https://github.com/vinsonchuong/create-npm/issues",
"license": "MIT",
"author": "Vinson Chuong <[email protected]>",
"type": "module",
"main": "./src/index.js",
"bin": "./src/bin/create-npm.js",
"repository": "vinsonchuong/create-npm",
"scripts": {
"test": "xo && ava",
"release": "semantic-release"
},
"dependencies": {
"@octokit/rest": "^21.0.2",
"cross-fetch": "^4.0.0",
"dedent": "^1.5.3",
"fs-extra": "^11.2.0",
"libsodium-wrappers": "^0.7.15"
},
"devDependencies": {
"ava": "^6.1.3",
"p-event": "^6.0.1",
"semantic-release": "^24.1.1",
"tempy": "^3.1.0",
"uuid": "^11.0.1",
"xo": "^0.60.0"
},
"ava": {
"verbose": true,
"timeout": "10m",
"cache": false,
"files": [
"**/*.test.js"
]
},
"xo": {
"prettier": true,
"space": 2,
"semicolon": false,
"rules": {
"import/no-anonymous-default-export": "off",
"unicorn/no-anonymous-default-export": "off"
}
},
"packageManager": "[email protected]"
}