-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.57 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.57 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
{
"name": "@bingo-bigul/blower",
"version": "1.0.0",
"description": "POC for a Bingo blower component with nice animations created with Matter.js.",
"main": "index.js",
"scripts": {
"start:dev": "webpack-dev-server",
"start:dev0": "webpack-dev-server --host 0.0.0.0",
"test": "ava test",
"lint": "standard",
"test:watch": "npm run test -- --watch",
"build": "webpack --config webpack.config.js"
},
"keywords": [
"bingo",
"game",
"blower",
"animation",
"es6",
"javascript"
],
"author": "Mihail Gaberov",
"license": "UNLICENSED",
"devDependencies": {
"ava": "^5.0.1",
"ignore-styles": "^5.0.1",
"standard": "^8.6.0",
"webpack-dev-server": "^5.2.1"
},
"ava": {
"concurrency": 5,
"require": [
"babel-register",
"babel-polyfill",
"ignore-styles"
],
"babel": "inherit"
},
"standard": {
"ignore": [
"static/"
]
},
"babel": {
"plugins": [
"transform-object-rest-spread"
],
"presets": [
"es2015"
]
},
"dependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^9.1.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"css-loader": "^6.7.1",
"file-loader": "^0.10.0",
"immutable": "^3.8.3",
"matter-js": "^0.14.2",
"node-sass": "^9.0.0",
"sass-loader": "^13.3.3",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webfontloader": "^1.6.24",
"webpack": "^5.94.0"
}
}