forked from screepers/typed-screeps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.47 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": "typed-screeps",
"version": "3.3.0",
"description": "Strong TypeScript declarations for the game Screeps.",
"repository": "screepers/typed-screeps",
"types": "./dist/index.d.ts",
"files": [
"dist/index.d.ts"
],
"scripts": {
"compile:dtslint": "node ./build/concat.js && node ./build/prependHeader.js",
"compile": "npm run compile:dtslint && node ./build/prependDescription.js",
"dtslint": "npm run compile:dtslint && dtslint dist",
"format": "npm run format:build && npm run format:src",
"format:build": "prettier --write 'build/**/*.js'",
"format:src": "prettier --write 'src/**/*.ts'",
"lint": "tslint -p tsconfig.json 'src/**/*.ts'",
"lint:test": "tslint -p dist/tsconfig.json 'dist/screeps-tests.ts'",
"pre-commit": "npm run compile && git add dist/index.d.ts",
"prepare": "husky install && npm test",
"test": "npm run dtslint"
},
"keywords": [
"Screeps",
"API",
"Typescript",
"Autocomplete"
],
"author": "Marko Sulamagi <[email protected]>",
"license": "MIT",
"devDependencies": {
"@definitelytyped/dtslint": "^0.0.111",
"copy": "^0.3.2",
"husky": "^7.0.4",
"lint-staged": "^12.3.8",
"prepend": "^1.0.2",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
]
}
}