-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
41 lines (41 loc) · 947 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": "create-socket-app",
"version": "1.1.5",
"description": "Create Socket App",
"bin": {
"create-socket-app": "./index.js"
},
"engines": {
"node": ">=16"
},
"scripts": {
"prepublishOnly": "git push --follow-tags",
"test": "run-s test:*",
"test:standard": "standard",
"test:node-test": "c8 node --test-reporter spec --test ./test.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/socketsupply/create-socket-app.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/socketsupply/create-socket-app/issues"
},
"homepage": "https://github.com/socketsupply/create-socket-app#readme",
"devDependencies": {
"c8": "^8.0.1",
"desm": "^1.3.0",
"npm-run-all2": "^6.0.6",
"p-temporary-directory": "^2.0.0",
"standard": "^17.0.0"
},
"c8": {
"reporter": [
"lcov",
"text"
]
}
}