-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.51 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
{
"name": "@parcellab/utilities",
"version": "1.10.4",
"description": "parcellab DRY code",
"main": "index.js",
"scripts": {
"lint": "echo 'Linting missing in this project'",
"test": "unset LOG_LEVEL; nyc mocha --require @babel/register --exit",
"build": "babel ./src -d ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/parcelLab/parcellab-utilities.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/parcelLab/parcellab-utilities/issues"
},
"homepage": "https://github.com/parcelLab/parcellab-utilities#readme",
"dependencies": {
"countryjs": "github:parcellab/countryjs",
"graylog2": "^0.2.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/register": "^7.24.6",
"@semantic-release/git": "^9.0.1",
"eslint": "^8.57.0",
"eslint-config-parcellab": "0.0.1",
"mocha": "^10.7.0",
"nyc": "^17.0.0"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json",
"lib/"
]
}
]
]
}
}