-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
49 lines (49 loc) · 1.21 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": "tga-js",
"version": "1.1.1",
"description": "A javascript tga loader from browser and node.js",
"author": "Vincent Thibault <[email protected]>",
"license": "MIT",
"main": "./dist/cjs/tga.js",
"module": "./dist/esm/tga.js",
"browser": {
"./dist/cjs/tga.js": "./dist/umd/tga.js"
},
"files": [
"dist/"
],
"bugs": {
"url": "https://github.com/vthibault/tga.js/issues"
},
"repository": "github:vthibault/tga.js",
"scripts": {
"lint": "eslint src/*.js test/*.js",
"test": "mocha --require @babel/register --recursive test",
"build": "del dist && npm run update-license && rollup -c",
"update-license": "node utils/update-license.js"
},
"keywords": [
"tga",
"tga.js",
"tga-js",
"tga-parser",
"tga-loader",
"image",
"loader"
],
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"chai": "^4.2.0",
"del-cli": "^1.1.0",
"eslint": "^5.12.1",
"eslint-config-prettier": "^4.0.0",
"mocha": "^5.2.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-terser": "^4.0.3"
}
}