-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
65 lines (65 loc) · 1.49 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
{
"name": "ts-llvm",
"version": "0.0.0",
"description": "TypeScript to LLVM compiler",
"scripts": {
"build": "tsc",
"start": "ts-node src/main.ts",
"test": "ts-node test/test-runner.ts",
"updateSnapshots": "ts-node test/test-runner.ts --updateSnapshots",
"lint": "tslint --project tsconfig.json",
"format": "npm run lint -- --fix",
"precommit": "lint-staged"
},
"lint-staged": {
"linters": {
"{src,test}/**/*": [
"tslint --project tsconfig.json --fix"
]
},
"ignore": [
"test/cases/*"
]
},
"prettier": {
"printWidth": 120
},
"repository": {
"type": "git",
"url": "git+https://github.com/ts-llvm/ts-llvm.git"
},
"keywords": [
"TypeScript",
"LLVM",
"compiler"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ts-llvm/ts-llvm/issues"
},
"homepage": "https://github.com/ts-llvm/ts-llvm",
"dependencies": {
"commander": "^2.15.1",
"llvm-node": "^2.0.6",
"ramda": "^0.25.0",
"segfault-handler": "^1.0.1",
"typescript": "^3.0.1"
},
"devDependencies": {
"@types/diff": "^3.5.1",
"@types/node": "^9.6.9",
"@types/ora": "^3.0.0",
"@types/ramda": "^0.25.36",
"chalk": "^2.4.1",
"diff": "^3.5.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.5",
"ora": "^3.0.0",
"prettier": "1.12.1",
"ts-node": "^7.0.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.12.0",
"tslint-plugin-prettier": "^1.3.0"
}
}