forked from chukwumaijem/roll-a-die
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.32 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
{
"name": "dice-roller-3d",
"version": "1.0.0",
"description": "Simple 3D dice roll using CSS3 animation.",
"main": "dist/dice-roller-3d.js",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"identity-obj-proxy": "^3.0.0",
"jest-cli": "^22.4.3",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"less-prefixer": "^1.0.0",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3"
},
"scripts": {
"test": "node_modules/.bin/jest",
"dev": "node_modules/.bin/webpack -p --watch",
"build": "node_modules/.bin/webpack -p",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git@github.com:drdreo/dice-roller-3d.git"
},
"keywords": [
"dice",
"CSS3D",
"animation"
],
"jest": {
"verbose": true,
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
},
"author": "Andreas K. Hahn",
"license": "MIT",
"bugs": {
"url": "https://github.com/drdreo/dice-roller-3d/issues"
},
"homepage": "https://github.com/drdreo/dice-roller-3d",
"files": [
"dist/dice-roller-3d.js"
]
}