-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
51 lines (51 loc) · 1.22 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
{
"name": "roll-a-die",
"version": "2.0.1",
"description": "Simple 3D dice roll using CSS3 animation.",
"main": "dist/roll-a-die.js",
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"babel-loader": "^8.2.2",
"css-loader": "^3.6.0",
"file-loader": "^1.1.11",
"identity-obj-proxy": "^3.0.0",
"jest-cli": "^25.5.4",
"less": "^3.13.1",
"less-loader": "^4.1.0",
"less-prefixer": "^1.0.0",
"style-loader": "^0.21.0",
"url-loader": "^1.1.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"test": "node_modules/.bin/jest",
"dev": "node_modules/.bin/webpack -p --watch",
"build": "node_modules/.bin/webpack -p"
},
"repository": {
"type": "git",
"url": "git@github.com:chukwumaijem/roll-a-die.git"
},
"keywords": [
"dice",
"CSS3D",
"animation"
],
"jest": {
"verbose": true,
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
},
"author": "Chukwuma Ezumezu",
"license": "MIT",
"bugs": {
"url": "https://github.com/chukwumaijem/roll-a-die/issues"
},
"homepage": "https://github.com/chukwumaijem/roll-a-die",
"files": [
"dist/roll-a-die.js"
]
}