-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "lcml",
"version": "1.0.0",
"description": "Low-Code Markup Language (DSL) for Values with Dynamic Expressions",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint --ext ts,tsx .",
"dev": "pnpm run -r --filter ./packages/ --parallel dev",
"clean": "pnpm run -r --filter ./packages/ --parallel clean",
"build": "pnpm run -r --filter ./packages/ build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyonbot/lcml.git"
},
"keywords": [
"dsl",
"markup",
"json",
"dynamic",
"expression",
"interpolate"
],
"author": "lyonbot",
"license": "MIT",
"bugs": {
"url": "https://github.com/lyonbot/lcml/issues"
},
"homepage": "https://github.com/lyonbot/lcml#readme",
"devDependencies": {
"@babel/preset-env": "^7.16.5",
"@microsoft/api-extractor": "^7.19.2",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"esbuild": "^0.14.6",
"eslint": "^8.5.0",
"esm": "^3.2.25",
"jest": "^27.4.5",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"arrowParens": "avoid",
"quoteProps": "consistent",
"printWidth": 120,
"trailingComma": "all"
}
}