forked from ForgeRock/forgerock-javascript-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.38 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.38 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
87
88
{
"name": "@forgerock/javascript-sdk",
"version": "2.1.0",
"description": "ForgeRock JavaScript SDK",
"main": "./lib/",
"module": "./lib-esm/",
"files": [
"/bundles/**/*",
"/lib/**/*",
"/lib-esm/**/*",
"package.json",
"README.md"
],
"scripts": {
"build": "npm run clean && tsc && tsc -m es6 --outDir lib-esm && webpack --env.DEV=no",
"clean": "shx rm -rf bundles docs lib lib-esm coverage",
"clean:all": "npm run clean && shx rm -rf node_modules package-lock.json && git clean -fX -e '!*.pem'",
"docs": "typedoc",
"docs:watch": "watch 'npm run docs' ./src",
"lint": "eslint --ignore-path .gitignore '**/*.ts' --fix",
"prepublishOnly": "npm run clean:all && npm i && npm run build && npm t",
"start:e2e": "http-server tests/e2e/app -c1 -p 8443 --ssl --cert example.com+5.pem --key example.com+5-key.pem",
"start:server": "node tests/e2e/server/index.mjs",
"start:server:live": "LIVE=true node tests/e2e/server/index.mjs",
"start:samples": "http-server samples -c1 -p 8443 --ssl --cert example.com+5.pem --key example.com+5-key.pem",
"test": "npm run test:unit && npm run test:integration && npm run test:e2e",
"test:coverage": "jest --testMatch='<rootDir>/src/**/*.test.ts' --config=./tests/jest.basic.config.js --coverage=true",
"test:e2e": "jest --testMatch='<rootDir>/tests/e2e/**/*.test.ts' --config=./tests/jest.e2e.config.js",
"test:e2e:live": "LIVE=true jest --testMatch='<rootDir>/tests/e2e/**/*.lc.test.ts' --config=./tests/jest.e2e.config.js",
"test:integration": "jest --testMatch='<rootDir>/tests/integration/**/*.test.ts' --config=./tests/jest.basic.config.js",
"test:unit": "jest --testMatch='<rootDir>/src/**/*.test.ts' --config=./tests/jest.basic.config.js --env=./tests/jest.env.config.js",
"watch": "webpack -w --env.DEV=yes"
},
"husky": {
"hooks": {
"pre-commit": "tsc && npm run lint",
"pre-push": "npm run test:unit && npm run test:integration"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ForgeRock/forgerock-javascript-sdk.git"
},
"author": "ForgeRock",
"license": "MIT",
"bugs": {
"url": "https://github.com/ForgeRock/forgerock-javascript-sdk/issues"
},
"homepage": "https://github.com/ForgeRock/forgerock-javascript-sdk#readme",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"@typescript-eslint/typescript-estree": "^2.4.0",
"awesome-typescript-loader": "^5.2.1",
"cookie-parser": "^1.4.4",
"copyfiles": "^2.1.1",
"cors": "^2.8.5",
"cpy-cli": "^3.1.1",
"dotenv": "^8.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"express": "^4.17.1",
"fake-indexeddb": "^3.0.0",
"http-server": "^0.12.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-canvas-mock": "^2.2.0",
"jest-dev-server": "^4.3.0",
"jest-environment-jsdom": "^26.0.1",
"playwright": "^1.0.2",
"prettier": "^2.0.5",
"shx": "^0.3.2",
"superagent": "^5.2.2",
"ts-jest": "^26.0.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typedoc": "^0.17.7",
"typescript": "^3.5.2",
"util": "^0.12.3",
"uuid": "^8.3.0",
"watch": "^1.0.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {}
}