-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
45 lines (45 loc) · 1.35 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
{
"name": "typed-screeps-arena",
"version": "0.0.1",
"description": "Strong TypeScript declarations for the game Screeps:Arena",
"repository": "screepers/typed-screeps-arena",
"types": "./dist/**/*.d.ts",
"files": [
"dist/**/*.d.ts",
"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": "prettier --write --ignore-unknown --ignore-path .gitignore ./dist/**/*",
"lint": "tslint -p ./dist/tsconfig.json ./src/**/*.ts",
"lint:test": "tslint -p ./dist/tsconfig.json ./dist/test/screeps-arena-tests.ts",
"pre-commit": "npm run compile && git add ./dist/index.d.ts",
"prepare": "npm test",
"test": "npm run dtslint"
},
"keywords": [
"Screeps",
"Screeps Arena",
"API",
"Typescript",
"Autocomplete"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concat-files": "^0.1.1",
"copy": "^0.3.2",
"dtslint": "3.6.14",
"husky": "^2.2.0",
"lint-staged": "^8.1.6",
"prepend": "^1.0.2",
"prettier": "^2.6.2",
"rimraf": "^2.6.2",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^4.6.3"
}
}