-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·83 lines (83 loc) · 2.04 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
{
"name": "cu-api",
"version": "4.0.0",
"description": "An api for CU Boulder students.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"author": "Kyle Pfromer",
"repository": "github:kpfromer/cu-api",
"engines": {
"node": ">=8.10.0"
},
"files": [
"lib/**/*"
],
"keywords": [
"cu",
"cu-boulder",
"university",
"colorado",
"university-of-colorado",
"typescript",
"api"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc && cp src/intermediate.pem lib",
"lint": "tslint --project tsconfig.json",
"start": "ts-node src/main.ts",
"commit": "git cz",
"semantic-release": "semantic-release"
},
"dependencies": {
"cheerio": "^1.0.0-rc",
"moment": "^2.24.0",
"querystring": "^0.2.0",
"ssl-root-cas": "^1.3.1",
"superagent": "^5.3.1"
},
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.2",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/npm": "7.1.1",
"@semantic-release/release-notes-generator": "9.0.2",
"@types/cheerio": "0.22.21",
"@types/node": "13.13.51",
"@types/superagent": "4.1.11",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"semantic-release": "17.4.2",
"ts-node": "8.10.2",
"tslint": "6.1.3",
"typescript": "4.3.5",
"@types/inquirer": "^7.3.3",
"chalk": "^4.1.2",
"inquirer": "^8.1.2"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/changelog",
"@semantic-release/git"
],
"branch": "master"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn test",
"pre-push": "yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}