forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1002 Bytes
/
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
{
"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",
"coveralls": "^3.1.0",
"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 build",
"test": "lerna run 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/*"
},
"dependencies": {
"@babel/register": "^7.7.0"
}
}