-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.53 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
{
"basename": "dotnet",
"name": "dotnet",
"version": "1.4.0",
"description": "Platform agnostic installation of .NET Core SDK/Runtime 2.0.0",
"engines": {
"node": ">=6.4.0"
},
"main": "./dist/call.js",
"typings": "./dist/main.d.ts",
"scripts": {
"publish-preview": "npm install && npm run publish-both",
"build": "tsc && static-link && node ./.scripts/go.js",
"pack-both": "tsc && static-link --force && node ./.scripts/go.js && cd ./runtime && npm pack && cd .. && cd ./sdk && npm pack ",
"publish-both": "tsc && static-link --force && node ./.scripts/go.js && cd ./runtime && npm publish --tag preview && cd .. && cd ./sdk && npm publish --tag preview ",
"prepublishOnly": " node -e \"throw new Error('DONT PUBLISH THIS HERE. USE npm run publish-preview.')\"",
"static-link": "static-link",
"reinstall": "rm -rf node_modules && touch package-lock.json && rm package-lock.json && touch yarn.lock && rm yarn.lock && npm install && static-link --debug --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fearthecowboy/dotnet.git"
},
"keywords": [
"dotnet",
".NET",
"core",
"$SDKORRUNTIME",
"2.0",
"2.0.0",
"install"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^8.0.22",
"shx": "~0.2.2",
"static-link": "^0.1.0",
"typescript": "^2.5.2"
},
"static-link": {
"entrypoints": [
"./dist/app.js"
],
"dependencies": {
"yarn": "^1.1.0",
"rimraf": "2.6.2",
"mkdirp": "0.5.1"
}
}
}