forked from LabKey/labkey-api-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.35 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.35 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@labkey/api",
"version": "0.0.17",
"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 && rollup -c",
"build:docs": "npm run clean:docs && typedoc --options theme/typedoc.js ./src/labkey && touch docs/.nojekyll && npm run build:docs-theme",
"build:docs-theme": "rimraf docs/assets/css && webpack --config theme/webpack.config.js",
"clean": "rimraf dist && npm run clean:docs",
"clean:docs": "rimraf docs",
"predeploy": "npm run build:docs",
"deploy": "gh-pages -t -d docs",
"setup": "npm install",
"test": "cross-env NODE_ENV=test jest"
},
"keywords": [
"labkey",
"javascript"
],
"main": "dist/labkey-api-js-core.cjs.js",
"module": "dist/labkey-api-js-core.es.js",
"types": "dist/labkey.d.ts",
"author": {
"name": "Nick Kerr",
"email": "nicka@labkey.com",
"url": "https://www.labkey.org"
},
"repository": {
"type": "git",
"url": "https://github.com/LabKey/labkey-api-js.git"
},
"publishConfig": {
"registry": "https://artifactory.labkey.com/artifactory/api/npm/libs-client"
},
"devDependencies": {
"@babel/core": "7.1.2",
"@types/jest": "23.3.5",
"@types/sinon": "5.0.5",
"cross-env": "5.2.0",
"css-loader": "1.0.0",
"gh-pages": "2.0.1",
"jest": "23.6.0",
"mini-css-extract-plugin": "0.4.4",
"node-sass": "4.9.4",
"resolve-url-loader": "3.0.0",
"rimraf": "2.6.2",
"rollup": "0.66.6",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-typescript2": "0.17.1",
"sass-loader": "7.1.0",
"sinon": "7.0.0",
"ts-jest": "23.10.4",
"ts-loader": "5.2.2",
"typedoc": "0.13.0",
"typescript": "3.1.3",
"webpack": "4.21.0",
"webpack-cli": "3.1.2"
},
"jest": {
"globals": {
"LABKEY": {
"contextPath": "",
"defaultHeaders": {
"X-LABKEY-CSRF": "TEST_CSRF_TOKEN"
}
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"moduleDirectories": [
"node_modules"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"testRegex": "(\\.(spec))\\.(ts)$",
"testURL": "http://localhost",
"transform": {
"^.+\\.ts?$": "ts-jest"
}
}
}