-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
67 lines (67 loc) · 1.55 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
{
"name": "lottery-wheel",
"version": "2.5.1",
"description": "A library helps you performing a wheel for lottery game.",
"main": "src/index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"src"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"lint": "standard --fix src/*.js",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fralonra/lottery-wheel.git"
},
"keywords": [
"browser",
"javascript",
"turntable",
"lottery"
],
"author": "zoron (https://github.com/fralonra/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fralonra/lottery-wheel/issues"
},
"homepage": "https://github.com/fralonra/lottery-wheel#readme",
"dependencies": {
"animejs": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@types/animejs": "^3.1.7",
"husky": "^4.2.5",
"rollup": "^2.10.6",
"rollup-plugin-filesize": "^6.0.0",
"rollup-plugin-terser": "^6.0.0",
"snazzy": "^8.0.0",
"standard": "^14.0.0"
},
"browserslist": "> 0.25%, not dead",
"standard": {
"env": [
"browser"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}