This repository was archived by the owner on Mar 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.36 KB
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
{
"name": "ignite-maps",
"description": "Ignite plugin that adds react-native-maps support.",
"version": "1.0.1",
"license": "MIT",
"files": [
"commands",
"templates",
"ignite.json",
"plugin.js",
"README.md"
],
"author": {
"name": "Infinite Red, Inc.",
"email": "npm@infinite.red",
"url": "https://github.com/infinitered/ignite-maps"
},
"scripts": {
"lint": "standard",
"test": "ava",
"watch": "ava --watch",
"coverage": "nyc ava",
"ci:publish": "yarn semantic-release",
"semantic-release": "semantic-release"
},
"standard": {
"parser": "babel-eslint"
},
"url": "https://github.com/infinitered/ignite-maps",
"repository": "infinitered/ignite-maps",
"devDependencies": {
"@semantic-release/git": "^7.0.5",
"ava": "^0.18.2",
"babel-eslint": "^7.1.1",
"nyc": "^10.1.2",
"ramda": "^0.23.0",
"semantic-release": "^15.12.5",
"sinon": "^1.17.7",
"standard": "^9.0.0"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": "package.json",
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}