-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 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
{
"name": "@unibeautify/beautifier-asmfmt",
"version": "0.0.1",
"description": "asmfmt beautifier for Unibeautify",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run clean && npm run compile",
"clean": "rimraf dist",
"compile": "tsc",
"jest": "jest",
"test": "npm run build && npm run lint && npm run jest",
"lint": "tslint '{src,test}/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Unibeautify/beautifier-asmfmt.git"
},
"keywords": [
"eslint",
"unibeautify",
"beautifier"
],
"author": "Glavin Wiechert",
"license": "MIT",
"bugs": {
"url": "https://github.com/Unibeautify/beautifier-asmfmt/issues"
},
"homepage": "git+https://github.com/Unibeautify/beautifier-asmfmt#readme",
"peerDependencies": {
"unibeautify": ">= 0.12.1"
},
"devDependencies": {
"@types/node": "12.20.55",
"@types/jest": "24.9.1",
"jest": "24.9.0",
"rimraf": "3.0.2",
"ts-jest": "24.3.0",
"tslint": "5.20.1",
"tslint-clean-code": "0.2.10",
"tslint-microsoft-contrib": "6.2.0",
"typescript": "3.9.10",
"unibeautify": "0.17.1"
},
"dependencies": {
"read-pkg-up": "^7.0.0"
}
}