-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
86 lines (86 loc) · 1.9 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
80
81
82
83
84
85
86
{
"name": "bricklink-api",
"version": "2.0.2",
"description": "A node module for connecting to the Bricklink API.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"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": "npm run compile:src & npm run build:definitions",
"compile:src": "babel src -d dist",
"build:definitions": "tsc",
"prepare": "husky install",
"docs": "rimraf --glob docs/* & jsdoc -c .jsdoc.json",
"prepublish": "npm run build",
"report": "nyc report --reporter=html"
},
"devDependencies": {
"@ava/babel": "^2.0.0",
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@babel/preset-env": "^7.22.9",
"@babel/register": "^7.22.5",
"@types/node": "^20.4.5",
"@types/oauth": "^0.9.4",
"ava": "^5.3.1",
"dotenv": "^16.3.1",
"husky": "^8.0.3",
"jsdoc": "^4.0.2",
"nyc": "^15.1.0",
"prettier": "^3.0.0",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"dependencies": {
"oauth": "^0.10.0"
},
"ava": {
"files": [
"spec/**/*spec.js"
],
"concurrency": 3,
"failFast": true,
"tap": true,
"require": [
"@babel/register"
]
},
"engines": {
"node": ">=5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"nyc": {
"include": [
"src/**/*"
]
}
}