-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.63 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.63 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
{
"name": "@labkey/api",
"version": "1.48.0",
"description": "JavaScript client API for LabKey Server",
"scripts": {
"build": "npm run build:dist && npm run build:docs",
"build:dist": "npm run clean && webpack --config webpack.config.js",
"build:docs": "typedoc --options typedoc.js",
"clean": "rimraf dist && npm run clean:docs",
"clean:docs": "rimraf docs",
"predeploy": "npm run build:docs",
"prepublishOnly": "npm run build",
"deploy": "gh-pages -t -d docs",
"setup": "npm install",
"test": "cross-env NODE_ENV=test jest",
"lint-fix": "eslint --fix src/"
},
"keywords": [
"labkey",
"javascript"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"author": "LabKey",
"repository": {
"type": "git",
"url": "https://github.com/LabKey/labkey-api-js.git"
},
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://labkey.jfrog.io/artifactory/api/npm/libs-client"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/plugin-transform-modules-commonjs": "7.28.6",
"@labkey/eslint-config": "1.1.3",
"@tinyhttp/content-disposition": "2.2.4",
"@types/jest": "30.0.0",
"@types/nise": "1.4.5",
"ajv": "~8.18.0",
"cross-env": "10.1.0",
"gh-pages": "6.3.0",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"jest-teamcity-reporter": "0.9.0",
"nise": "6.1.1",
"rimraf": "6.1.3",
"ts-jest": "29.4.6",
"ts-loader": "9.5.4",
"typedoc": "0.28.17",
"typescript": "5.9.3",
"webpack": "5.105.3",
"webpack-cli": "6.0.1"
}
}