-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.97 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.97 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
89
90
91
92
93
94
95
96
97
{
"name": "lightstands-js",
"version": "1.4.6",
"description": "TypeScript/JavaScript LightStands client library",
"typings": "build/index.d.ts",
"main": "build/index.js",
"type": "module",
"repository": "https://github.com/lightstands/lightstands-js",
"license": "MIT",
"keywords": [],
"scripts": {
"build": "run-p build:*",
"build:module": "tsc -p tsconfig.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:unit": "nyc --silent ava -s",
"watch:build": "tsc -p tsconfig.json -w",
"watch:test": "nyc --silent ava --watch",
"cov": "run-s build test:unit cov:html cov:lcov && open-cli coverage/index.html",
"cov:html": "nyc report --reporter=html",
"cov:lcov": "nyc report --reporter=lcov",
"cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"doc:html": "typedoc src/ --exclude **/*.spec.ts --tsconfig tsconfig.json --out build/docs",
"doc:json": "typedoc src/ --exclude **/*.spec.ts --tsconfig tsconfig.json --json build/docs/typedoc.json",
"reset-hard": "git clean -dfx && git reset --hard && pnpm i",
"prepare-release": "run-s reset-hard test cov:check doc:html version doc:publish",
"generate-internal": "rm -r src/lib/internal && openapi -i openapi/openapi.json -o src/lib/internal -c axios"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@noble/hashes": "^1.1.3",
"axios": "^1.1.3",
"cuint": "^0.2.2",
"form-data": "~4.0.0",
"rfc4648": "^1.5.2"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/cuint": "^0.2.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"ava": "^4.3.3",
"axios-mock-adapter": "^1.21.2",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^4.4.1",
"eslint-plugin-import": "^2.26.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"open-cli": "^7.1.0",
"openapi-typescript-codegen": "^0.23.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
},
"files": [
"build",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"ava": {
"failFast": true,
"timeout": "60s",
"typescript": {
"rewritePaths": {
"src/": "build/"
},
"compile": "tsc"
},
"files": [
"!build/module/**"
]
},
"prettier": {
"singleQuote": true
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"**/*.spec.js"
]
}
}