-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "prx-podagent",
"version": "0.1.18",
"description": "User-agent parser for common podcast clients",
"main": "index.js",
"engines": {
"node": ">=10 <21"
},
"scripts": {
"start": "concurrently -k \"npm run dev-serve\" \"npm run dev-lock\"",
"dev-serve": "live-server docs",
"dev-lock": "nodemon -w db/agents.yml -w docs/index.pug -x npm run lock",
"test": "mocha test/*-test.js",
"unknowns": "mocha test/unknowns.js",
"lock": "node lock/lock-yaml.js && node lock/lock-js.js && node lock/lock-json.js && node lock/lock-html.js",
"prepublish": "npm run lock",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PRX/prx-podagent.git"
},
"keywords": [
"podcast",
"user-agent"
],
"author": "ryan cavis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PRX/prx-podagent/issues"
},
"homepage": "https://github.com/PRX/prx-podagent#readme",
"devDependencies": {
"chai": "^4.1.1",
"concurrently": "^4.1.1",
"csv": "^1.1.1",
"diff": ">= 3.5.0",
"js-yaml": "^3.14.1",
"live-server": "^1.2.1",
"mocha": "^3.5.0",
"nodemon": "^1.19.1",
"pug": "^2.0.4",
"release-it": "^14.10.0"
},
"resolutions": {
"diff": ">= 3.5.0",
"growl": ">= 1.10.0",
"lodash": ">= 4.17.13"
},
"release-it": {
"github": {
"release": true
}
}
}