forked from ForgeRock/forgerock-javascript-sdk-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.31 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
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": "2.1.1",
"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",
"docs:watch": "watch 'npm run docs' ./src",
"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": "^2.1.0"
},
"devDependencies": {
"@forgerock/ui-design": "^0.1.1",
"@types/expect-puppeteer": "^3.3.3",
"@types/jest": "^26.0.13",
"@types/jest-environment-puppeteer": "^4.3.2",
"@types/puppeteer": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"awesome-typescript-loader": "^5.2.1",
"bootstrap": "^4.4.1",
"copyfiles": "^2.1.1",
"cpy-cli": "^3.1.1",
"eslint": "^7.3.1",
"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-puppeteer": "^4.4.0",
"miragejs": "^0.1.32",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"puppeteer": "^2.0.0",
"raw-loader": "^3.1.0",
"sass-loader": "^8.0.0",
"shx": "^0.3.2",
"ts-jest": "^26.1.4",
"tslint": "^5.20.0",
"typedoc": "^0.17.7",
"typescript": "^4.0.0",
"watch": "^1.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}