-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.46 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.46 KB
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
{
"name": "@teamopen/sourcecred-stack-lookup",
"homepage": "https://github.com/teamopen-dev/sourcecred-stack-lookup",
"repository": {
"type": "git",
"url": "https://github.com/teamopen-dev/sourcecred-stack-lookup.git"
},
"version": "0.1.0",
"license": "BlueOak-1.0.0",
"main": "index.js",
"files": [
"index.js",
"src",
"bin"
],
"bin": {
"sourcecred-stack-lookup": "bin/sourcecred-stack-lookup"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"check-pretty": "prettier --list-different '**/*.js'",
"prettify": "prettier --write '**/*.js'",
"test": "npm run check-pretty",
"lookup": "bin/sourcecred-stack-lookup",
"release": "npm run build && xyz --repo git@github.com:teamopen-dev/sourcecred-stack-lookup.git --tag 'vX.Y.Z' --increment",
"release:alpha": "npm run build && xyz --repo git@github.com:teamopen-dev/sourcecred-stack-lookup.git --tag 'vX.Y.Z' --publish-command 'npm publish --tag=alpha' --prerelease-label alpha --increment"
},
"dependencies": {
"axios": "^0.19.0",
"pako": "^1.0.10"
},
"devDependencies": {
"delay": "^4.3.0",
"globby": "^10.0.1",
"got": "^9.6.0",
"knuth-shuffle": "^1.0.8",
"mkdirp": "^0.5.1",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"rollup": "^1.23.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"supports-color": "^7.1.0",
"xyz": "^3.0.0"
}
}