forked from ricardoboss/extended-nmea
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.23 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
{
"name": "extended-nmea",
"version": "2.0.1",
"description": "A TypeScript library for parsing NMEA0183-like sentences with support for custom and proprietary sentences.",
"repository": "https://github.com/ricardoboss/extended-nmea",
"authors": [
"Ricardo Boss <[email protected]>"
],
"license": "MIT",
"keywords": [
"gps",
"nmea",
"parser",
"nmea0183",
"decoder"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"test": "cross-env TS_NODE_TRANSPILE_ONLY=true NODE_ENV=test mocha --ui bdd --recursive --require ts-node/register test/**/*.test.ts",
"test:watch": "npm run test -- --watch --watch-extensions ts --watch-files src,test --reporter min",
"build": "cross-env NODE_ENV=production tsc",
"clean": "rimraf ./dist",
"pub": "yarn run clean && yarn run build && yarn publish",
"pub:beta": "yarn run clean && yarn run build && yarn publish --tag beta"
},
"devDependencies": {
"@types/chai": "^4.2.17",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"mocha": "^8.3.2",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}