forked from microsoft/TypeScript-TmLanguage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.06 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
{
"name": "typescript-tmlanguage",
"version": "1.0.0",
"private": true,
"description": "TextMate grammar files for TypeScript for VS Code, Sublime Text, and Atom",
"main": "build/build.js",
"scripts": {
"build": "npm run build:grammar && npm run build:tests",
"build:grammar": "tsc -b build -v && node build/build.js",
"build:tests": "tsc -b tests -v",
"pretest": "npm run build",
"test": "mocha --full-trace tests/test.js --reporter mocha-multi-reporters",
"diff": "cross-env-shell $DIFF tests/baselines tests/generated",
"accept": "copyfiles -u 2 \"tests/generated/*\" tests/baselines"
},
"dependencies": {
"@types/chai": "latest",
"@types/js-yaml": "latest",
"@types/mocha": "latest",
"@types/node": "latest",
"chai": "latest",
"js-yaml": "latest",
"mocha": "latest",
"plist": "latest",
"typescript": "latest",
"vscode-oniguruma": "latest",
"vscode-textmate": "latest"
},
"devDependencies": {
"copyfiles": "^2.3.0",
"cross-env": "^5.1.1",
"mocha-multi-reporters": "^1.1.7"
}
}