forked from okta/okta-auth-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.22 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
{
"private": true,
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"dotenv": "^8.1.0",
"eslint-plugin-compat": "^3.3.0",
"eslint-plugin-jasmine": "^2.10.1",
"globby": "^6.1.0",
"lerna": "^2.11.0"
},
"engines": {
"yarn": "^1.7.0"
},
"scripts": {
"build": "yarn workspace @okta/okta-auth-js build",
"clean": "yarn clean-node-modules",
"clean-dist": "rimraf dist && lerna exec rimraf build2 && lerna exec rimraf dist",
"clean-node-modules": "lerna exec rimraf node_modules && rimraf node_modules",
"lint": "yarn workspaces run lint",
"publish": "lerna publish --skip-npm",
"test": "yarn test:unit && yarn test:e2e",
"test:e2e": "yarn --cwd test/e2e start",
"test:browser": "yarn workspace @okta/okta-auth-js test:browser",
"test:server": "yarn workspace @okta/okta-auth-js test:server",
"test:karma": "yarn workspace @okta/okta-auth-js test:karma",
"test:unit": "yarn workspace @okta/okta-auth-js test",
"test:report": "yarn test:unit --ci --silent || true",
"prepare": "yarn build",
"start": "yarn --cwd test/app start --open"
},
"workspaces": [
"packages/*",
"test/*"
]
}