-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.05 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.05 KB
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
{
"name": "@nevware21/release-tests",
"description": "Simple post-release / integration testing",
"version": "0.1.0",
"homepage": "https://github.com/nevware21/release-tests",
"license": "MIT",
"author": {
"name": "Nevware21",
"email": "github@nevware21.com"
},
"keywords": [
"integration tests",
"typescript",
"ts-utils",
"ts-async",
"ts-debug",
"grunt"
],
"sideEffects": false,
"scripts": {
"test-release": "npm run clean && npm run set-config && npm run test-ai && npm run test-ai-react",
"build": "npm run test-release",
"clean": "node -e \"require('fs').rmSync('temp', {recursive: true, force: true})\"",
"set-config": "git config core.longPaths true",
"test-ai": "npm run fetch-ai && npm run build-ai",
"fetch-ai": "git clone https://github.com/microsoft/ApplicationInsights-JS temp/ai-js",
"build-ai": "cd temp/ai-js && node common/scripts/install-run-rush.js update --recheck --full && npm install && npm run rebuild",
"test-ai-react": "npm run fetch-ai-react && npm run build-ai-react",
"fetch-ai-react": "git clone https://github.com/microsoft/applicationinsights-react-js temp/ai-react-js",
"build-ai-react": "cd temp/ai-react-js && node common/scripts/install-run-rush.js update --recheck --full && npm install && npm run rebuild"
},
"repository": {
"type": "git",
"url": "https://github.com/nevware21/release-tests.git"
},
"bugs": {
"url": "https://github.com/nevware21/release-tests/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nevware21/release-tests/blob/main/LICENSE"
}
],
"engines": {
"node": ">= 0.8.0"
},
"devDependencies": {
"@nevware21/grunt-eslint-ts": "^0.2.4",
"@nevware21/grunt-ts-plugin": "^0.4.5",
"@nevware21/ts-utils": "^0.9.0 <= 2.x",
"@nevware21/ts-async": "^0.1.0 <= 2.x",
"typescript": "^4.9.5"
}
}