-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 KB
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
{
"name": "@koreez/grid-core",
"version": "2.0.5",
"description": "core functionality for grid system",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build --scripts-prepend-node-path",
"prepublishOnly": "npm test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koreezgames/grid-core.git"
},
"keywords": [
"Grid"
],
"author": "Koreez LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/koreezgames/grid-core/issues"
},
"homepage": "https://github.com/koreezgames/grid-core#readme",
"devDependencies": {
"@types/jest": "^25.1.2",
"bufferutil": "^4.0.1",
"canvas": "^2.6.1",
"jest": "^25.1.0",
"prettier": "^1.18.2",
"ts-jest": "^25.2.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.4",
"utf-8-validate": "^5.0.2"
},
"files": [
"lib/**/*"
],
"dependencies": {}
}