-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.26 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
{
"name": "@blitz/textmate",
"version": "0.4.7",
"description": "TextMate Grammars for StackBlitz",
"license": "MIT",
"repository": "stackblitz/textmate",
"author": {
"name": "Sam Verschueren",
"email": "[email protected]",
"url": "https://github.com/SamVerschueren"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run compile",
"test": "npm run prettier:check && xo && npm run compile && ava",
"prettier:check": "prettier --check \"grammars/**/*.json\" \"source/**/*.ts\"",
"compile": "tsc -p ."
},
"files": [
"grammars",
"dist",
"!dist/test"
],
"keywords": [
"textmate",
"tm",
"grammars",
"stackblitz",
"monaco",
"editor"
],
"devDependencies": {
"@ava/typescript": "^1.1.1",
"ava": "^3.15.0",
"ow": "^0.23.1",
"prettier": "^2.8.8",
"typescript": "^4.9.5",
"xo": "^0.38.2"
},
"ava": {
"files": [
"source/test/**/*",
"!source/test/helpers/**/*"
],
"typescript": {
"rewritePaths": {
"source/": "dist/"
}
}
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"useTabs": true,
"semi": true,
"bracketSpacing": true,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"rules": {
"@typescript-eslint/no-var-requires": "off"
}
}
}