This repository was archived by the owner on Jul 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
126 lines (126 loc) · 2.94 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "tink",
"version": "0.21.5",
"description": "a next-generation runtime and package manager",
"author": {
"name": "Kat Marchán",
"email": "[email protected]",
"twitter": "maybekatz"
},
"license": "Artistic-2.0",
"files": [
"*.js",
"lib",
"bin"
],
"main": "index.js",
"bin": {
"tink": "./bin/tink.js",
"tish": "./bin/tish.sh"
},
"scripts": {
"prerelease": "npm t",
"release": "standard-version -s",
"postrelease": "npm publish && git push --follow-tags",
"pretest": "standard ./**/*.js",
"test": "tap -J --nyc-arg=--all --coverage test/*.js test/node/*.js",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"devDependencies": {
"mkdirp": "^0.5.1",
"nock": "^10.0.6",
"standard": "^11.0.1",
"standard-version": "*",
"tacks": "^1.2.7",
"tap": "^12.1.1",
"weallbehave": "*",
"weallcontribute": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/npm/tink.git"
},
"bugs": "https://github.com/npm/tink/issues",
"homepage": "https://npmjs.com/package/tink",
"keywords": [
"npm",
"package manager",
"cache",
"downloader",
"dependency manager",
"knitting puns"
],
"bundleDependencies": [
"babel-core",
"babel-plugin-transform-react-jsx",
"babel-plugin-transform-typescript",
"bin-links",
"bluebird",
"byte-size",
"cacache",
"cli-columns",
"figgy-pudding",
"find-npm-prefix",
"get-stream",
"glob",
"graceful-fs",
"ini",
"ink",
"ink-table",
"libnpm",
"lock-verify",
"npm-logical-tree",
"npmlog",
"qrcode-terminal",
"read",
"rimraf",
"semver",
"spawn-wrap",
"ssri",
"stringify-package",
"tar",
"tiny-relative-date",
"yargs",
"esm"
],
"dependencies": {
"babel-core": "^7.0.0-beta.3",
"babel-plugin-transform-react-jsx": "^7.0.0-beta.3",
"babel-plugin-transform-typescript": "^7.0.0-beta.3",
"bin-links": "^1.1.2",
"bluebird": "^3.5.3",
"byte-size": "^5.0.1",
"cacache": "^11.3.2",
"cli-columns": "^3.1.2",
"esm": "^3.1.1",
"figgy-pudding": "^3.5.1",
"get-stream": "^4.1.0",
"glob": "^7.1.3",
"graceful-fs": "^4.1.15",
"ini": "^1.3.5",
"ink": "^0.5.1",
"ink-table": "^1.0.3",
"libnpm": "^2.0.1",
"lock-verify": "^2.0.2",
"npmlog": "^4.1.2",
"qrcode-terminal": "^0.12.0",
"read": "^1.0.7",
"rimraf": "^2.6.3",
"semver": "^5.6.0",
"spawn-wrap": "^1.4.2",
"ssri": "^6.0.1",
"stringify-package": "^1.0.0",
"tar": "^4.4.8",
"tiny-relative-date": "^1.3.0",
"yargs": "^12.0.5"
},
"config": {
"nyc": {
"exclude": [
"node_modules/**",
"test/**"
]
}
}
}