-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "@sourcecred/payouts",
"version": "0.1.0-alpha.5",
"license": "(MIT OR Apache-2.0)",
"homepage": "https://github.com/sourcecred/payouts",
"bugs": {
"url": "https://github.com/sourcecred/payouts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcecred/payouts.git"
},
"main": "index.js",
"files": [
"index.js",
"src",
"LICENSE",
"LICENSE-APACHE",
"LICENSE-MIT"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"check-pretty": "prettier --list-different '**/*.js'",
"prettify": "prettier --write '**/*.js'",
"release": "xyz --repo git@github.com:sourcecred/payouts.git --tag 'vX.Y.Z' --increment",
"release:alpha": "xyz --repo git@github.com:sourcecred/payouts.git --tag 'vX.Y.Z' --publish-command 'npm publish --tag=alpha' --prerelease-label alpha --increment",
"test": "npm run unit",
"unit": "jest"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {},
"devDependencies": {
"jest": "^24.9.0",
"prettier": "^1.18.2",
"rollup": "^1.23.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"xyz": "^3.0.0"
}
}