-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.38 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
{
"name": "ducklang",
"version": "0.1.0",
"main": "src/index.js",
"homepage": "https://ducklang.community",
"repository": "github:aliclark/ducklang",
"author": "Ali Clark",
"license": "MIT",
"scripts": {
"build": "mkdir -p alpha/compiler && $(npm bin)/nearleyc alpha/src/grammar.ne -o alpha/compiler/grammar.js && cp alpha/src/index.js alpha/compiler/dklg && chmod +x alpha/compiler/dklg",
"deploy": "mkdir -p $HOME/.ducklang/alpha/compiler && cp -R node_modules $HOME/.ducklang/alpha/compiler/ && cp alpha/compiler/grammar.js alpha/compiler/dklg $HOME/.ducklang/alpha/compiler/",
"prettier": "prettier -w package.json src/**.js"
},
"dependencies": {
"axios": "^0.21.1",
"base26": "^0.1.0",
"fs-ext": "^2.0.0",
"json-diff": "^0.5.4",
"moo": "aliclark/moo.git#graphical-errors",
"moo-indentation-lexer": "^6.0.0",
"nearley": "^2.19.7",
"optionator": "^0.9.1",
"source-map": "^0.7.3",
"v8-compile-cache": "^2.1.1"
},
"devDependencies": {
"prettier": "^2.1.2"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"semi": false,
"singleQuote": true,
"quoteProps": "consistent",
"jsxSingleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"proseWrap": "always"
}
}