-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.19 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
{
"name": "cli-nova",
"version": "1.3.3",
"description": "",
"main": "src/nova.js",
"homepage": "https://github.com/dan-online/Nova",
"bugs": "https://github.com/dan-online/Nova/issues",
"scripts": {
"test": "mocha src/tests",
"preinstall": "node src/install.js --preinstall",
"package": "pkg ./src/nova.js --out-path lib --targets linux,macos,win --public && echo \"Successfully compiled\"",
"release": "npm run package; release-it; npm run upload; npm publish",
"pre-release": "npm run package; release-it; npm run upload;",
"upload": "github-release upload --owner dan-online --repo Nova --tag `node -e \"console.log('v' + require('./package.json').version)\"` --name `node -e \"console.log('v' + require('./package.json').version)\"` ./lib/nova-linux ./lib/nova-macos ./lib/nova-win.exe"
},
"pkg": {
"scripts": "src/**/*.js"
},
"author": "DanCodes <dan@dancodes.online>",
"repository": {
"type": "git",
"url": "https://github.com/dan-online/Nova.git"
},
"engines": {
"node": ">=8"
},
"license": "MIT",
"devDependencies": {
"github-release-cli": "^1.3.1",
"mocha": "^6.2.2",
"pkg": "^4.4.0",
"release-it": "^12.4.3",
"debug": "^4.1.1",
"safe-eval": "^0.4.1"
},
"bin": {
"nova": "./lib/nova"
},
"release-it": {
"git": {
"changelog": "git log --pretty=format:'* %s (%h)' [REV_RANGE]",
"tagName": "v${version}"
},
"github": {
"release": "prerelease",
"push": true,
"commit": true,
"tag": true
},
"npm": {
"publish": false
}
},
"contributes": {
"languages": [
{
"id": "nova",
"aliases": [
"Nova",
"nova"
],
"extensions": [
".ns"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "nova",
"scopeName": "source.ns",
"path": "./syntaxes/nova.tmLanguage.json"
}
]
},
"keywords": [
"nova",
"programming language",
"nova-cli",
"cli-nova",
"nova files",
"novascript"
],
"dependencies": {
"download-github-release": "^0.3.2",
"file-system": "^2.2.2"
}
}