-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
70 lines (70 loc) · 1.55 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
{
"name": "dride-core",
"version": "1.0.0",
"description": "Open source dashcam for RaspberryPi ",
"scripts": {
"build": "node scripts/build.js",
"test": "mocha modules/**/**.spec.js && mocha dride-ws/server/**/**.spec.js --exit && node scripts/after_test.js",
"release": "npm run test && node scripts/build.js",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"repository": {
"type": "git",
"url": "https://github.com/dride/dride-core.git"
},
"keywords": [
"dride"
],
"author": "Dride, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/dride/dride-core/issues"
},
"homepage": "https://github.com/dride/dride-core#readme",
"dependencies": {
"fs": "0.0.1-security"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/git": "^7.0.3",
"@semantic-release/github": "^5.0.4",
"archiver": "^2.1.1",
"aws-sdk": "^2.211.0",
"chai": "^4.1.2",
"fs-extra": "^5.0.0",
"mocha": "^5.0.4",
"node-fs-extra": "^0.8.2",
"semantic-release": "^15.9.12",
"should": "^13.2.1",
"travis-deploy-once": "^4.4.1"
},
"release": {
"generateNotes": {
"preset": "angular",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"writerOpts": {
"commitsSort": [
"subject",
"scope"
]
}
},
"prepare": [
{
"path": "@semantic-release/changelog",
"changelogFile": "CHANGELOG.md"
},
"@semantic-release/git"
],
"publish": [
"@semantic-release/github"
]
}
}