forked from dpogue/seymour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 924 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
{
"name": "seymour",
"version": "5.0.0",
"description": "A build helper for Apache Cordova projects.",
"repository": {
"type": "git",
"url": "https://github.com/dpogue/seymour"
},
"author": "Darryl Pogue <[email protected]>",
"contributors": [
"Sam Evanuk <[email protected]>",
"Infacto <[email protected]>"
],
"license": "Apache-2.0",
"main": "src/seymour.js",
"bin": "bin/seymour",
"files": [
"bin",
"src"
],
"scripts": {
"lint": "eslint .",
"test": "tap test/*.js",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"cordova-common": "^4.0.2",
"cordova-lib": "^10.0.0",
"elementtree": "^0.1.7",
"loud-rejection": "^2.2.0"
},
"devDependencies": {
"eslint": "^7.5.0",
"sinon": "^9.0.1",
"tap": "^14.10.7"
},
"tap": {
"check-coverage": true,
"reporter": "spec"
}
}