-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.04 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.04 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
{
"name": "@sbapi-team/smilebasic-fileparser",
"version": "1.6.4",
"description": "A file parsing library, written in TypeScript, for SmileBASIC file formats",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/SBAPI-Team/SmileBASIC-FileParser",
"author": "SmileBASIC API Team",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc -p src",
"build:docs": "typedoc src/index.ts --tsconfig src/tsconfig.json",
"test": "yarn build && jest tests/",
"coverage": "yarn test --coverage && yarn jest-coverage-badges",
"prepublishOnly": "yarn build:docs && yarn build"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/ndarray": "^1.0.9",
"@types/node": "^15.0.2",
"jest": "^26.6.3",
"jest-coverage-badges": "^1.1.2",
"ts-jest": "^26.5.6",
"typedoc": "^0.21.3",
"typescript": "^4.2.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"ndarray": "^1.0.19"
}
}