forked from ryansh100/bricklink-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.83 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 1.83 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "bricklink-api",
"version": "1.2.5",
"description": "A node module for connecting to the Bricklink API.",
"main": "./dist/index.js",
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ryansh100/bricklink-api.git"
},
"keywords": [
"node",
"js",
"javascript",
"module",
"bricklink",
"api",
"oauth2"
],
"author": "Ryan Hafer",
"license": "SEE LICENCE IN LICENSE",
"bugs": {
"url": "https://github.com/ryansh100/bricklink-api/issues"
},
"homepage": "https://github.com/ryansh100/bricklink-api#readme",
"scripts": {
"test": "nyc ava",
"test:ci": "nyc ava -c 1",
"build": "babel src -d dist",
"prepare": "husky install",
"docs": "esdoc2",
"prepublish": "npm run build",
"report": "nyc report --reporter=html"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"ava": "^3.15.0",
"dotenv": "^8.6.0",
"esdoc2": "^2.1.5",
"esdoc2-standard-plugin": "^2.1.2",
"husky": "^6.0.0",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1"
},
"dependencies": {
"core-js": "^2.6.12",
"debug": "^4.3.2",
"oauth-signature": "^1.3.1",
"request": "^2.88.2"
},
"ava": {
"babel": true,
"files": [
"spec/**/*spec.js"
],
"source": [
"src/**/*.js"
],
"concurrency": 3,
"failFast": true,
"tap": true,
"powerAssert": false,
"require": [
"@babel/register"
]
},
"engines": {
"node": ">=5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"nyc": {
"extension": [
".js"
]
}
}