-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
86 lines (86 loc) · 1.95 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "lua-fmt",
"version": "2.6.0",
"description": "Format Lua code",
"author": "trixnz",
"homepage": "https://github.com/trixnz/lua-fmt",
"bugs": "https://github.com/trixnz/lua-fmt/issues",
"license": "MIT",
"keywords": [
"lua",
"format",
"lua-fmt",
"formatter"
],
"repository": {
"type": "git",
"url": "trixnz/lua-fmt"
},
"main": "dist/src/index.js",
"bin": {
"luafmt": "dist/bin/luafmt.js"
},
"typings": "dist/src/index.js",
"watch": {
"test-run": {
"patterns": [
"dist",
"test_files"
],
"extensions": [
"js",
"lua"
],
"quiet": true
}
},
"scripts": {
"compile": "tsc -p .",
"test-run": "node dist/src/testPrinter.js",
"watch": "tsc -p . -w",
"watch-and-run": "npm-watch",
"test": "jest"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"devDependencies": {
"@types/jest": "^19.2.2",
"@types/node": "^7.0.8",
"gulp": "^3.9.1",
"gulp-bump": "^2.7.0",
"gulp-git": "^2.1.0",
"gulp-shell": "^0.6.1",
"gulp-tag-version": "^1.3.0",
"gulp-tslint": "^7.1.0",
"jest": "^19.0.2",
"npm-watch": "^0.1.8",
"raw-loader": "^0.5.1",
"source-map-support": "^0.4.11",
"ts-jest": "^19.0.6",
"ts-loader": "^2.0.1",
"tslint": "^4.5.1",
"typescript": "^2.2.1",
"uglify-js": "mishoo/UglifyJS2#harmony",
"uglifyjs-webpack-plugin": "^0.3.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"dependencies": {
"@types/commander": "^2.3.31",
"@types/diff": "^3.2.0",
"@types/get-stdin": "^5.0.0",
"commander": "^2.9.0",
"diff": "^3.3.0",
"get-stdin": "^5.0.1",
"luaparse": "oxyc/luaparse#ac42a00ebf4020b8c9d3219e4b0f84bf7ce6e802"
}
}