forked from Masth0/ScratchCard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "scratchcard-js",
"version": "1.4.7",
"description": "Create scratch card in browser.",
"main": "./build/scratchcard.min.js",
"scripts": {
"dev": "cross-env NODE_ENV=development concurrently \"webpack\" \"webpack-dev-server\" ",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/Masth0/ScratchCard"
},
"keywords": [
"canvas",
"javascript",
"scratchcard",
"scratch card"
],
"author": "Masth0 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"concurrently": "^4.0.1",
"cross-env": "^5.2.0",
"ts-loader": "^5.2.1",
"typescript": "^3.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.4"
},
"browsers": [
"last 2 versions",
"ie > 9"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/runtime": "^7.1.2"
}
}