This repository was archived by the owner on Jul 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.4 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.4 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
57
{
"name": "fritzing-parts-api-client-js",
"version": "0.2.1",
"description": "fritzing-parts api client for frontend side",
"contributors": [
{
"name": "paulvollmer",
"email": "[email protected]",
"url": "https://paulvollmer.net"
},
{
"name": "el-j",
"email": "[email protected]",
"url": "https://fabianalthaus.de"
}
],
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"pretest": "make lint",
"test": "make test",
"precommit": "make lint",
"prepush": "make lint && make test"
},
"homepage": "https://github.com/fritzing/fritzing-parts-api-client-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fritzing/fritzing-parts-api-client-js.git"
},
"bugs": {
"url": "https://github.com/fritzing/fritzing-parts-api-client-js/issues"
},
"keywords": [
"fritzing",
"fritzing-parts",
"api-client"
],
"jest": {
"verbose": true,
"collectCoverage": true
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-minify-dead-code-elimination": "^0.3.0",
"babel-preset-env": "^1.6.1",
"esdoc": "^1.0.4",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"husky": "^0.14.3",
"jest": "^22.4.2"
},
"dependencies": {
"axios": "^0.18.0"
}
}