-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 1.81 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "holded-client",
"version": "1.1.1",
"description": "Holded API client",
"author": "mawrkus <web@sparring-partner.be>",
"keywords": [
"holded",
"client",
"api"
],
"license": "MIT",
"main": "index.js",
"engines": {
"node": ">= 8.9"
},
"homepage": "https://github.com/mawrkus/holded-client",
"files": [
"es",
"lib",
"index.js"
],
"scripts": {
"lint": "eslint es/",
"pretest": "npm run lint",
"test": "jest",
"tdd": "jest es/ --watch --verbose",
"demo": "clear && DEBUG=holded:client:* babel-node es/demo",
"prebuild": "npm run test",
"build": "rm -rf lib && babel es -d lib --source-maps",
"prerelease": "npm run build",
"release": "npm version -m \"New version: %s\"",
"postrelease": "npm run push && npm publish",
"push": "git push origin master && git push origin --tags"
},
"dependencies": {
"axios": "^0.21.1",
"debug": "^3.1.0",
"dotenv": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.7.2",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.2.0",
"jest": "^22.4.3"
},
"repository": {
"type": "git",
"url": "https://github.com/mawrkus/holded-client.git"
},
"bugs": {
"url": "https://github.com/mawrkus/holded-client/issues"
},
"babel": {
"plugins": [
"transform-object-rest-spread"
],
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/lib/",
"<rootDir>/node_modules/"
],
"testRegex": "/__tests__/.*\\.spec\\.js$"
}
}