-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.28 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
{
"name": "sweet-syntax",
"version": "1.0.0",
"description": "Add syntactic sugar to any language!",
"repository": {
"type": "git",
"url": "git+https://github.com/tgrassl/sweet-syntax.git"
},
"keywords": [
"syntax",
"syntax sugar",
"sugar",
"custom syntax",
"sweet-syntax",
"sweet syntax",
"syntactic sugar",
"script",
"language"
],
"author": "Timon Grassl <grassl.timon@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tgrassl/sweet-syntax/issues"
},
"homepage": "https://github.com/tgrassl/sweet-syntax#readme",
"scripts": {
"format": "prettier --write */sweet-syntax*.js",
"lint": "./node_modules/.bin/eslint */sweet-syntax*.js",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A",
"postversion": "git push && git push --tags"
},
"main": "./lib/sweet-syntax.js",
"preferGlobal": true,
"bin": {
"sweet-syntax": "./bin/sweet-syntax-cli.js"
},
"engines": {
"node": ">=8"
},
"files": [
"bin",
"lib"
],
"dependencies": {
"arg": "^4.1.1",
"chalk": "^2.4.2",
"log-symbols": "^3.0.0"
},
"devDependencies": {
"@types/node": "^12.7.4",
"eslint": "^6.6.0",
"prettier": "1.18.2"
}
}