-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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
{
"name": "@wpsh/releaselog",
"version": "0.2.3",
"description": "Create changelog out of GitHub releases",
"homepage": "https://github.com/wpsh/releaselog#readme",
"repository": "github:wpsh/releaselog",
"bugs": "https://github.com/wpsh/releaselog/issues",
"keywords": [
"github",
"changelog",
"wordpress",
"readme"
],
"files": [
"src",
"dist/*.js"
],
"main": "dist/main.common.js",
"module": "src/main.js",
"scripts": {
"lint": "standard",
"test": "jest",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"build": "babel ./src/main.js --out-file ./dist/main.common.js",
"prepublish": "npm run build"
},
"author": "Kaspars Dambis (https://kaspars.net)",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.0",
"babel-jest": "^24.5.0",
"coveralls": "^3.0.3",
"jest": "^24.5.0",
"standard": "^12.0.1"
},
"babel": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
},
"standard": {
"env": [
"jest"
],
"ignore": [
"/dist/**"
]
}
}