-
Notifications
You must be signed in to change notification settings - Fork 205
/
Copy pathpackage.json
48 lines (48 loc) · 1009 Bytes
/
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
{
"name": "@auto-it/crates",
"version": "11.3.0",
"main": "dist/index.js",
"description": "Deploy Rust crates to crates.io",
"license": "MIT",
"author": {
"name": "Andrew Lisowski",
"email": "[email protected]"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/intuit/auto"
},
"files": [
"dist"
],
"keywords": [
"automation",
"semantic",
"release",
"github",
"labels",
"automated",
"continuos integration",
"changelog",
"rust",
"crates.io"
],
"scripts": {
"build": "tsc -b",
"start": "npm run build -- -w",
"lint": "eslint src --ext .ts",
"test": "jest --maxWorkers=2 --config ../../package.json"
},
"dependencies": {
"@auto-it/core": "link:../../packages/core",
"env-ci": "^5.0.1",
"semver": "^7.0.0",
"toml": "^3.0.0",
"tslib": "2.1.0",
"user-home": "^2.0.0"
}
}