This repository was archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.34 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.34 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-ui",
"version": "3.0.0",
"description": "ForgeRock JavaScript SDK with UI rendering capability",
"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",
"build:e2e": "webpack --config ./tests/e2e/server/webpack.config.js",
"clean": "shx rm -rf ./bundles ./docs ./lib ./lib-esm",
"clean:all": "npm run clean && shx rm -rf ./node_modules ./package-lock.json && git clean -fX -e \"!*.pem\"",
"lint": "eslint --ignore-path .gitignore \"./**/*.ts\" --fix",
"eslint-check": "eslint --print-config src/index.ts | eslint-config-prettier-check",
"docs": "npm run docs:clean && npm run docs:gen",
"docs:gen": "typedoc --mode file ./src",
"docs:clean": "shx rm -rf docs",
"start:e2e": "http-server ./tests/e2e/site -c1 -p 8443 --ssl --cert example.com+5.pem --key example.com+5-key.pem",
"start:e2e:app": "http-server ./tests/e2e/app -c1 -p 8443 --ssl --cert example.com+5.pem --key example.com+5-key.pem",
"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:e2e",
"test:e2e": "JEST_PUPPETEER_CONFIG=\"./tests/jest.puppeteer.config.js\" jest --testMatch=\"<rootDir>/tests/e2e/**/*.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",
"watch": "webpack --env DEV=yes"
},
"husky": {
"hooks": {
"pre-commit": "tsc && npm run lint",
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ForgeRock/forgerock-javascript-sdk-ui.git"
},
"author": "ForgeRock",
"license": "MIT",
"bugs": {
"url": "https://github.com/ForgeRock/forgerock-javascript-sdk-ui/issues"
},
"homepage": "https://github.com/ForgeRock/forgerock-javascript-sdk-ui#readme",
"dependencies": {
"@forgerock/javascript-sdk": "^3.0.0"
},
"devDependencies": {
"@types/expect-puppeteer": "^3.3.3",
"@types/jest": "^26.0.13",
"@types/jest-environment-puppeteer": "4.3.2",
"@types/puppeteer": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"@typescript-eslint/typescript-estree": "^4.17.0",
"autoprefixer": "^10.2.6",
"bootstrap": "^5.0.1",
"copyfiles": "^2.1.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^5.0.2",
"http-server": "^0.12.3",
"husky": "^3.1.0",
"jest": "^26.1.0",
"jest-junit": "^12.0.0",
"jest-puppeteer": "^4.4.0",
"miragejs": "^0.1.32",
"node-sass": "^6.0.1",
"postcss": "^8.3.0",
"postcss-loader": "^5.3.0",
"prettier": "^2.0.5",
"puppeteer": "^2.0.0",
"raw-loader": "^4.0.2",
"sass-loader": "^11.1.1",
"shx": "^0.3.2",
"ts-jest": "^26.1.4",
"ts-loader": "^8.0.17",
"typedoc": "^0.17.7",
"typescript": "^4.0.0",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0"
}
}