-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.22 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
{
"name": "xport-js",
"version": "0.2.1",
"description": "Node.js library to read SAS XPORT v5/v6 data transport files (*.xpt).",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "jest -c jest.config.js --coverage --verbose",
"docs": "typedoc",
"build": "tsc",
"lint": "eslint . --ignore-pattern 'dist' --ignore-pattern 'docs' --ignore-pattern 'src/**/*.js' --ignore-pattern '*.js' --ignore-pattern 'src/example.ts'",
"release": "npm run lint && npm run test && npm run build && npm publish",
"upgrade-interactive": "npm-check --update"
},
"repository": {
"type": "git",
"url": "https://github.com/defineEditor/xport-js.git"
},
"keywords": [
"xpt",
"sas",
"xport"
],
"author": "Dmitry Kolosov, Sergei Krivtcov",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"eslint": "^9.18.0",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"ts-jest": "^29.2.5",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"js-stream-dataset-json": "^0.5.0"
},
"dependencies": {
"js-array-filter": "^0.1.1"
}
}