-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.52 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "npmum",
"version": "0.0.1",
"description": "NPM User Manager",
"main": "src/index.js",
"files": [
"src/",
"bin/"
],
"bin": "bin/npmum.js",
"scripts": {
"test": "NODE_ENV=test jest test/**/*.spec.js",
"test:watch": "npm run test -- --watch",
"lint": "eslint \"src/**/*.js\" \"test/**/*.js\" \"bin/**/*.js\"",
"lint:fix": "npm run lint -- --fix",
"commitmsg": "validate-commit-msg"
},
"release": {
"verifyConditions": "condition-circle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trs/npmum.git"
},
"author": "Tyler Stewart",
"license": "MIT",
"bugs": {
"url": "https://github.com/trs/npmum/issues"
},
"homepage": "https://github.com/trs/npmum#readme",
"engines": {
"node": ">8",
"npm": ">6"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "2017",
"sourceType": "module"
},
"env": {
"node": true,
"jest": true,
"es6": true
},
"plugins": [
"node"
],
"rules": {
"no-console": 0
}
},
"devDependencies": {
"condition-circle": "^1.5.0",
"eslint": "^4.11.0",
"eslint-plugin-node": "^5.2.1",
"husky": "^0.14.3",
"jest": "^24.8.0",
"mock-stdin": "^0.3.1",
"semantic-release": "^17.2.3",
"sinon": "^4.1.2",
"validate-commit-msg": "^2.14.0"
},
"dependencies": {
"columnify": "^1.5.4",
"commander": "^2.11.0",
"configstore": "^3.1.1",
"update-notifier": "^2.3.0"
}
}