-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.24 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "cvs",
"description": "A basic canvas framework for 2d drawing.",
"version": "0.6.8",
"author": "Hanger <2313303800@qq.com>",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server --hot --config build/webpack.dev.conf.js",
"build": "webpack --config build/webpack.prod.conf.js",
"start": "npm run dev",
"tonpm": "npm run build && npm version patch && npm publish",
"test": "karma start",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"docs:pro": "sh deploy.sh"
},
"main": "dist/cvs.min.js",
"keywords": [
"hanger",
"canvas",
"framework",
"2d"
],
"homepage": "https://github.com/hamger/cvs",
"bugs": {
"url": "https://github.com/hamger/cvs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/hamger/cvs.git"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-plugin-istanbul": "^2.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"compression-webpack-plugin": "^1.1.11",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.11",
"eslint": "^4.15.0",
"eslint-config-alloy": "^1.4.2",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^3.14.0",
"glob": "^7.1.2",
"html-webpack-plugin": "^2.30.1",
"jasmine-core": "^2.5.1",
"karma": "^2.0.5",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^3.0.0",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "3.6.0",
"webpack-dev-server": "2.11.1"
},
"dependencies": {
"bezier-easing": "^2.0.3",
"color-string": "^1.5.3",
"point-at-length": "^1.1.0"
}
}