forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.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
{
"name": "microsoft-authentication-libraries-for-js",
"private": true,
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.7.2",
"@istanbuljs/nyc-config-babel": "^2.1.1",
"babel-plugin-istanbul": "^5.2.0",
"beachball": "^1.33.0",
"coveralls": "3.0.9",
"lerna": "^3.20.2",
"nyc": "^14.1.1",
"puppeteer": "^2.1.1",
"rimraf": "^3.0.0"
},
"scripts": {
"postinstall": "node build/postinstall.js",
"build": "lerna run --concurrency 1 build",
"build:extensions": "cd extensions/msal-node-extensions/ && npm ci && npm run build",
"test": "lerna run --concurrency 1 test",
"test:coverage": "npm run clean:coverage && lerna run test:coverage",
"test:report": "nyc report | coveralls",
"test:e2e": "lerna run --concurrency 1 test:e2e",
"clean": "lerna run clean --no-private && lerna clean",
"clean:coverage": "rimraf ./.nyc_output/*",
"beachball:check": "beachball check --branch origin/dev",
"beachball:change": "beachball change --branch origin/dev",
"beachball:publish": "beachball publish -n $NODE_AUTH_TOKEN"
},
"dependencies": {
"@babel/register": "^7.7.0"
}
}