-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 873 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
{
"name": "seymour",
"version": "6.0.4",
"type": "module",
"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.js",
"files": [
"bin",
"src"
],
"exports": {
".": "./src/seymour.js",
"./package.json": "./package.json"
},
"scripts": {
"lint": "eslint",
"test": "node --test",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags"
},
"dependencies": {
"cordova-common": "^5.0.0",
"cordova-lib": "^12.0.0"
},
"devDependencies": {
"eslint": "^9.0.0"
}
}