-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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": "@benglynn/publish",
"version": "1.0.6",
"description": "Publish npm packages safely",
"main": "./src/api.js",
"bin": {
"safepublish": "./bin/safepublish.js"
},
"scripts": {
"pretest": "npm run lint",
"test": "mocha --require esm",
"watch-test": "mocha --watch --require esm",
"lint": "eslint --ignore-path .gitignore .",
"safepublish": "$npm_package_bin_safepublish"
},
"keywords": [
"npm",
"publish"
],
"repository": {
"type": "git",
"url": "git+https://github.com/benglynn/publish.git"
},
"publishConfig": {
"access": "public"
},
"author": "Ben Glynn",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.0.1",
"prettier": "^2.0.5",
"sinon": "^9.0.2"
},
"dependencies": {
"chalk": "^4.1.0",
"esm": "^3.2.25",
"ora": "^4.0.4",
"semver": "^7.3.2"
}
}