-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "tetris-fumen",
"description": "Fumen parser for tetris",
"version": "1.1.3",
"author": "knewjade <[email protected]> (https://github.com/knewjade)",
"keywords": [
"tetris",
"fumen"
],
"license": "MIT",
"homepage": "https://github.com/knewjade/tetris-fumen",
"bugs": "https://github.com/knewjade/tetris-fumen/issues",
"repository": "github:knewjade/tetris-fumen",
"files": [
"README.md",
"LICENSE",
"package.json",
"index.js",
"index.d.ts",
"lib/"
],
"scripts": {
"clean": "rm -rf lib/ && rm -f index.js index.d.ts",
"lint": "tslint --project tsconfig.json --config tslint.json",
"build": "npm run clean && tsc",
"test": "jest",
"test:src": "jest /src",
"test:artifact": "jest /interface-tests",
"publish:npm": "npm run build && npm publish"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"tslint": "^6.1.3",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^4.6.3"
}
}