-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.85 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "nano-typescript",
"version": "0.0.5",
"description": "Super fast and lightweight 2D graphics library for TypeScript",
"scripts": {
"dev": "webpack serve --config webpack.dev.js --host 0.0.0.0 --port 3000 --content-base dev --inline --hot --mode development",
"release": "webpack --config webpack.release.js --mode production --progress --colors",
"desktop": "npm run release && webpack --config webpack.desktop.js --mode production --progress --colors && electron ./build/desktop/electron.js",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pluginio/nano-typescript.git"
},
"keywords": [
"2d",
"graphics",
"canvas",
"library",
"typescript",
"fast"
],
"author": "Gary Paluk",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/pluginio/nano-typescript/issues"
},
"homepage": "https://github.com/pluginio/nano-typescript#readme",
"config": {
"unsafe-perm": true,
"allow-root": true
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"coverage": "^0.3.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.1",
"karma-typescript": "^4.0.0",
"prettier": "^1.17.1",
"ts-loader": "^6.0.0",
"typescript": "^3.4.5",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.31.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@types/jest": "^24.0.13",
"copy-webpack-plugin": "^5.0.3",
"remove-strict-webpack-plugin": "^0.1.2",
"uglify-js": "^3.5.13"
}
}