-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
129 lines (129 loc) · 3.91 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "malyan",
"version": "0.0.7",
"description": "JavaScript canvas 2D engine library",
"main": "dist/malyan.cjs.js",
"module": "dist/malyan.esm.js",
"unpkg": "dist/malyan.min.js",
"files": [
"dist",
"src",
"README.md",
"package.json"
],
"scripts": {
"docs": "cd docs && npm run dev",
"commit": "git cz",
"clean": "node scripts/clean.js",
"clean:gh-pages": "node scripts/clean_gh_pages.js",
"lint": "eslint src --ext js",
"start": "webpack --config webpack.config.js",
"dev": "webpack-dev-server --host 0.0.0.0 --open --port 8080 --open-page examples",
"build": "npm run clean && cross-env NODE_ENV=production rollup -c rollup.config.js",
"build:webpack": "webpack --config webpack.build.config.js",
"build:docs": "cd docs && npm run build",
"build:gh-pages": "npm run clean:gh-pages && node scripts/build_gh_pages.js",
"test": "karma start karma.conf.js",
"release": "standard-version",
"travis": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HarryChen0506/malyan.git"
},
"keywords": [
"JavaScript",
"canvas",
"2D",
"graphic",
"engine",
"library"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/HarryChen0506/malyan/issues"
},
"homepage": "https://github.com/HarryChen0506/malyan#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-stage-0": "^7.8.3",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"autoprefixer": "^9.4.7",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"chalk": "^3.0.0",
"clean-webpack-plugin": "^1.0.1",
"commitizen": "^4.0.3",
"copy-webpack-plugin": "^5.0.3",
"core-js": "^3.6.4",
"coveralls": "^3.0.9",
"cross-env": "^6.0.3",
"css-loader": "^2.1.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.1.0",
"eslint-formatter-pretty": "^3.0.1",
"eslint-loader": "2.2.1",
"eslint-plugin-flowtype": "3.13.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^3.0.1",
"fs-extra": "^8.1.0",
"handlebars": "^4.7.2",
"html-webpack-plugin": "^3.2.0",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^4.0.0",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-coveralls": "^2.1.0",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"log-symbols": "^3.0.0",
"mocha": "^5.2.0",
"ora": "^4.0.3",
"postcss-loader": "^2.1.6",
"rollup": "^1.29.1",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4",
"shelljs": "^0.8.3",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"standard-version": "^7.1.0",
"style-loader": "^0.23.1",
"uglify-es": "^3.3.9",
"url-loader": "^1.1.2",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14",
"yargs": "^15.1.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}