forked from Azure/azure-sdk-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 4.03 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@azure/core-arm",
"author": {
"name": "Microsoft Corporation",
"email": "[email protected]",
"url": "https://github.com/Azure/azure-sdk-for-js"
},
"sdk-type": "client",
"version": "1.0.0-preview.7",
"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/coreArm.js",
"module": "./es/lib/coreArm.js",
"types": "./es/lib/coreArm.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",
"homepage": "https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/core/core-arm",
"repository": {
"type": "git",
"url": "[email protected]:Azure/azure-sdk-for-js.git"
},
"bugs": {
"url": "http://github.com/Azure/azure-sdk-for-js/issues"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"coverage/**/*",
"**/*.d.ts",
"**/*.js"
],
"reporter": [
"text",
"html",
"cobertura"
],
"all": true
},
"scripts": {
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit",
"build": "run-p build:lib",
"build:lib": "run-s build:tsc build:rollup build:minify",
"build:tsc": "tsc -p tsconfig.es.json",
"build:rollup": "rollup -c rollup.config.js 2>&1",
"build:minify": "uglifyjs -c -m --comments --source-map \"content='./dist/coreArm.js.map'\" -o ./dist/coreArm.min.js ./dist/coreArm.js",
"build:test": "npm run build",
"clean": "rimraf ./es ./dist",
"integration-test:browser": "echo skipped",
"integration-test:node": "echo skipped",
"integration-test": "npm run integration-test:node && npm run integration-test:browser",
"lint:fix": "eslint -c ../../.eslintrc.json lib test samples --ext .ts --fix --fix-type [problem,suggestion]",
"lint": "eslint -c ../../.eslintrc.json lib test samples --ext .ts -f html -o core-arm-lintReport.html || exit 0",
"lint:terminal": "eslint -c ../../.eslintrc.json lib test samples --ext .ts",
"test:browser": "npm run build && npm run unit-test:browser && npm run integration-test:browser",
"test:node": "npm run build && npm run unit-test:node && npm run integration-test:node",
"test": "npm run build && npm run unit-test && npm run integration-test",
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
"unit-test:browser": "echo skipped",
"unit-test:node": "nyc mocha",
"pack": "npm pack 2>&1",
"prebuild": "npm run clean"
},
"sideEffects": false,
"dependencies": {
"@azure/core-http": "^1.0.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.5",
"@types/node": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-only-tests": "^2.3.0",
"eslint-plugin-promise": "^4.1.1",
"mocha": "^6.2.2",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi": "^1.1.3",
"npm-run-all": "^4.1.5",
"nyc": "^14.0.0",
"rimraf": "^3.0.0",
"rollup": "^1.16.3",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-visualizer": "^2.0.0",
"shx": "^0.3.2",
"ts-node": "^8.3.0",
"typescript": "^3.2.2",
"uglify-js": "^3.4.9",
"yarn": "^1.6.0"
},
"//metadata": {
"constantPaths": [
{
"path": "lib/util/constants.ts",
"prefix": "coreArmVersion"
}
]
}
}