-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 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
{
"dependencies": {
"date-fns": "1.28.2",
"es7-sleep": "1.0.0",
"execa": "0.6.3",
"fs-extra": "2.1.2",
"graceful-fs": "4.1.11",
"pify": "2.3.0",
"ramda": "0.23.0",
"sanctuary": "0.12.2"
},
"description": "Install and require multiple simultaneous versions of any NPM package",
"devDependencies": {
"ava": "0.19.1",
"npm-check": "5.4.0",
"nyc": "10.2.0",
"xo": "0.19.0"
},
"engines": {
"node": ">=7.6.0"
},
"homepage": "https://github.com/cloud-elements/multi-tool",
"keywords": [
"install",
"local",
"multiple",
"npm",
"package",
"packages",
"require",
"semver",
"simultaneous",
"version",
"versioning"
],
"license": "ISC",
"main": "index.js",
"name": "multi-tool",
"nyc": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
},
"repository": {
"type": "git",
"url": "git://github.com/cloud-elements/multi-tool.git"
},
"scripts": {
"cover": "nyc report --reporter=text-lcov",
"coverage": "nyc report --reporter=lcov && open ./coverage/lcov-report/index.html",
"depend": "npm-check --ignore ramda* --ignore @rockymadden/now-go*",
"lint": "xo",
"test": "{ npm run depend || true; } && npm run lint && npm run unit",
"unit": "nyc --check-coverage ava"
},
"version": "0.5.0",
"xo": {
"esnext": true,
"rules": {
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"new-cap": 0,
"no-negated-condition": 0
}
}
}