-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "led-matrix-ts",
"description": "Highly customizable led matrix for the browser",
"version": "0.9.5",
"repository": {
"type": "git",
"url": "https://github.com/Bubblesphere/led-matrix-ts.git"
},
"keywords": [
"led",
"matrix",
"typescript",
"javascript",
"panel"
],
"author": "Déric Dallaire",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bubblesphere/led-matrix-ts/issues"
},
"homepage": "https://github.com/Bubblesphere/led-matrix-ts",
"devDependencies": {
"@types/jest": "23.3.2",
"babel-core": "6.26.0",
"babel-loader": "7.1.4",
"babel-preset-es2015": "6.24.1",
"clean-webpack-plugin": "0.1.19",
"copy-webpack-plugin": "4.5.1",
"jest": "23.6.0",
"ts-jest": "23.10.0",
"ts-loader": "4.1.0",
"typescript": "3.0.3",
"webpack": "4.1.1",
"webpack-cli": "2.0.11",
"webpack-dev-server": "3.1.1",
"webpack-merge": "4.1.2"
},
"scripts": {
"start": "webpack-dev-server --open-page distDemos/basics.html --config webpack.demo.js --mode development ",
"build": "tsc && webpack --config webpack.build.js --mode production",
"test": "jest --watch --verbose false",
"test-cov": "jest --coverage"
},
"main": "./dist/umd/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/typings/index.d.ts"
}