-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.61 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
57
58
{
"name": "@labkey/api",
"version": "1.39.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.26.0",
"@babel/plugin-transform-modules-commonjs": "7.25.9",
"@labkey/eslint-config-base": "0.0.15",
"@tinyhttp/content-disposition": "2.2.2",
"@types/jest": "29.5.14",
"@types/sinon": "17.0.3",
"cross-env": "7.0.3",
"gh-pages": "6.2.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-teamcity-reporter": "0.9.0",
"rimraf": "6.0.1",
"sinon": "19.0.2",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"typedoc": "0.26.11",
"typescript": "5.6.3",
"webpack": "5.96.1",
"webpack-cli": "5.1.4"
}
}