-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.75 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
{
"name": "@fpvcult/laprf",
"description": "A Node.js LapRF Protocol Library",
"repository": "github:fpvcult/laprf",
"version": "1.1.1",
"main": "./dist/laprf.js",
"module": "./dist/esm/laprf.js",
"typings": "./dist/laprf.d.ts",
"files": [
"dist/",
"COPYING.md",
"README.md"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"prebuild": "shx rm -rf dist",
"build": "npm run build:tsc && npm run build:cjs && npm run build:esm && npm run extract-api",
"extract-api": "npm run build:cjs && api-extractor run --local --verbose",
"build:esm": "rollup -c --file dist/esm/laprf.js --format esm",
"build:cjs": "rollup -c",
"build:tsc": "tsc --project tsconfig-cjs.json --outDir lib",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"lint:nofix": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet",
"prepare": "npm run lint:nofix && npm run test && npm run build",
"test": "jest"
},
"keywords": [
"fpv",
"drone",
"race"
],
"author": "John Hooks <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"@microsoft/api-documenter": "^7.13.68",
"@microsoft/api-extractor": "^7.18.19",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"rollup": "^2.60.0",
"shx": "^0.3.3",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}