-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
51 lines (51 loc) · 1.78 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
{
"name": "@progress/jsdo",
"version": "6.0.1",
"description": "The JSDO is a JavaScript implementation of the CDO Specification published by Progress Software Corporation.\r The JSDO is a free and open-source full-featured implementation that can be used in web, mobile web and hybrid mobile apps.",
"main": "lib/progress.all.min.js",
"files": [
"LICENSE",
"notice.txt",
"readme.md",
"lib/",
"typings/"
],
"scripts": {
"build:jsdo": "mkdirp build && concat -o build/progress.jsdo.js src/progress.util.js src/progress.js src/progress.session.js src/auth/progress.auth.js src/auth/progress.auth.basic.js src/auth/progress.auth.form.js src/auth/progress.auth.sso.js",
"lint": "eslint --quiet src/*",
"test": "npm run build:jsdo && mocha --recursive",
"test:smokes": "npm run build:jsdo && mocha test/smoke*.js",
"test:tc-smokes": "npm run build:jsdo && mocha test/smoke*.js --recursive --reporter mocha-teamcity-reporter",
"test:tc": "npm run build:jsdo && mocha --timeout 15000 --recursive --reporter mocha-teamcity-reporter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/progress/JSDO.git"
},
"keywords": [
"JSDO",
"Progress",
"node",
"NativeScript"
],
"author": "Progress Software",
"typings": "typings/progress.all.d.ts",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/progress/JSDO/issues"
},
"homepage": "https://github.com/progress/JSDO#readme",
"dependencies": {},
"peerDependencies": {},
"optionalDependencies": {},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"concat": "^1.0.3",
"eslint": "^5.7.0",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"mocha-teamcity-reporter": "^2.4.0",
"xmlhttprequest": "^1.8.0"
}
}