forked from woutervh-/pure-canvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "pure-canvas",
"version": "0.6.15",
"description": "TODO",
"main": "lib/Stage.js",
"types": "lib/Stage.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "tsc test/index.ts",
"examples": "webpack-dev-server --config webpack.config.js --content-base dist/ --hot --inline --host 0.0.0.0 --port 8080"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woutervh-/pure-canvas.git"
},
"keywords": [
"canvas",
"typescript"
],
"author": "Wouter van Heeswijk",
"license": "MIT",
"bugs": {
"url": "https://github.com/woutervh-/pure-canvas/issues"
},
"homepage": "https://github.com/woutervh-/pure-canvas#readme",
"devDependencies": {
"@types/eventemitter3": "^1.1.29",
"@types/rbush": "^2.0.2",
"@types/react": "^15.6.7",
"@types/react-dom": "^15.4.0",
"awesome-typescript-loader": "^3.2.3",
"circular-dependency-plugin": "^3.0.0",
"html-webpack-plugin": "^2.24.1",
"react": "^15.5.6",
"react-dom": "^15.5.6",
"source-map-loader": "^0.1.5",
"typescript": "^2.6.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"eventemitter3": "^2.0.2",
"rbush": "^2.0.1"
}
}