-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 KB
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
{
"name": "draw-example",
"version": "1.0.0",
"description": "Example drawing app with canvas [RU]",
"main": "gulpfile.js",
"dependencies": {},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-postcss": "^6.2.0",
"postcss-calc": "^5.3.1",
"postcss-nesting": "^2.3.1",
"ts-loader": "^3.2.0",
"tslint": "^5.8.0",
"tslint-config-avol": "^2.0.0",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:scripts": "webpack",
"build:styles": "gulp styles",
"watch:styles": "gulp styles:watch",
"postinstall": "npm run build:scripts && npm run build:styles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Avol-V/draw-example.git"
},
"keywords": [
"canvas",
"draw",
"demo",
"typescript"
],
"author": "Andrey Volynkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/Avol-V/draw-example/issues"
},
"homepage": "https://github.com/Avol-V/draw-example#readme"
}