-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1022 Bytes
/
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
{
"name": "@downpourdigital/bmfont-loader",
"version": "0.0.0",
"description": "BMFont loader for webpack",
"sideEffects": false,
"main": "dist/index.js",
"repository": "https://github.com/DOWNPOURDIGITAL/bmfont-loader.git",
"author": "johh <[email protected]>",
"license": "BSD-4-Clause",
"private": false,
"keywords": [
"bmfont",
"loader",
"webpack"
],
"scripts": {
"build": "rollup -c",
"declaration": "tsc --emitDeclarationOnly",
"type-check": "tsc --noEmit",
"dev": "rollup -c -w"
},
"devDependencies": {
"@types/loader-utils": "^1.1.3",
"rollup": "^1.17.0",
"rollup-plugin-typescript2": "^0.24.0",
"tslib": "^1.10.0",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-react": "^4.0.0",
"typescript": "^3.6.3"
},
"dependencies": {
"@downpourdigital/bmfont-utils": "^0.0.3",
"loader-utils": "^1.2.3"
}
}