-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.56 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
{
"name": "satisfied",
"version": "1.1.2",
"description": "Keep your package.json version requirements satisfied",
"main": "index.js",
"bin": "cli.js",
"repository": "https://github.com/levithomason/satisfied",
"bugs": "https://github.com/levithomason/satisfied/issues",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix .",
"prerelease": "npm run lint -s",
"release:major": "npm run prerelease -s && ta-script npm/release major",
"release:minor": "npm run prerelease -s && ta-script npm/release minor",
"release:patch": "npm run prerelease -s && ta-script npm/release patch"
},
"keywords": [
"satisfied",
"check",
"verify",
"satisfy",
"npm",
"semver",
"version",
"versions",
"match",
"matches",
"installed",
"node_modules",
"modules",
"packages"
],
"author": "Levi Thomason <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"eslint": "^2.13.1",
"eslint-config-ta": "^5.2.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"snazzy": "^6.0.0",
"ta-scripts": "^2.5.2"
},
"dependencies": {
"chalk": "^1.1.3",
"halcyon": "^0.19.1",
"log-symbols": "^1.0.2",
"semver": "^5.3.0",
"update-notifier": "^2.1.0",
"yargs": "^7.0.2"
},
"yargs": {
"short-option-groups": true,
"camel-case-expansion": true,
"dot-notation": true,
"parse-numbers": true,
"boolean-negation": false
}
}