forked from Azure/azure-sdk-for-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 2.76 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@azure/ms-rest-azure-js",
"author": {
"name": "Microsoft Corporation",
"email": "[email protected]",
"url": "https://github.com/Azure/ms-rest-azure-js"
},
"version": "1.1.0",
"description": "Isomorphic Azure client runtime for Typescript/node.js/browser javascript client libraries generated using AutoRest",
"tags": [
"isomorphic",
"browser",
"javascript",
"node",
"microsoft",
"autorest",
"clientruntime"
],
"keywords": [
"isomorphic",
"browser",
"javascript",
"node",
"microsoft",
"autorest",
"clientruntime"
],
"main": "./dist/msRestAzure.js",
"module": "./es/lib/msRestAzure.js",
"types": "./es/lib/msRestAzure.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"es/lib/**/*.js",
"es/lib/**/*.js.map",
"es/lib/**/*.d.ts",
"es/lib/**/*.d.ts.map",
"lib/**/*.ts",
"LICENSE",
"README.md"
],
"license": "MIT",
"dependencies": {
"@azure/ms-rest-js": "^1.0.457",
"tslib": "^1.9.2"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.1",
"@types/node": "^10.9.4",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.2",
"nyc": "^12.0.2",
"rollup": "^0.66.4",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-visualizer": "^0.9.2",
"shx": "^0.2.2",
"ts-loader": "^2.3.7",
"ts-node": "^7.0.1",
"tslint": "^5.7.0",
"typescript": "^3.1.1",
"uglify-js": "^3.4.9",
"yarn": "^1.6.0"
},
"homepage": "https://github.com/Azure/ms-rest-azure-js",
"repository": {
"type": "git",
"url": "[email protected]:Azure/ms-rest-azure-js.git"
},
"bugs": {
"url": "http://github.com/Azure/ms-rest-azure-js/issues"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts"
],
"include": [
"lib/**/*.ts"
],
"reporter": [
"text",
"html"
],
"all": true
},
"scripts": {
"build": "run-p build:scripts build:lib",
"build:scripts": "tsc -p ./.scripts/",
"build:lib": "run-s build:tsc build:rollup build:minify",
"build:tsc": "tsc -p tsconfig.es.json",
"build:rollup": "rollup -c rollup.config.js",
"build:minify": "uglifyjs -c -m --comments --source-map \"content='./dist/msRestAzure.js.map'\" -o ./dist/msRestAzure.min.js ./dist/msRestAzure.js",
"test": "run-p test:tslint test:unit",
"test:unit": "nyc mocha",
"test:tslint": "tslint -p . -c tslint.json --exclude test/**/*.ts",
"prepare": "npm run build",
"publish-preview": "npm test && shx rm -rf dist/test && node ./.scripts/publish",
"local": "ts-node ./.scripts/local.ts",
"preview": "ts-node ./.scripts/preview.ts",
"latest": "ts-node ./.scripts/latest.ts"
},
"sideEffects": false
}