-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "basketball-court",
"version": "1.1.2",
"description": "Generate a basketball court in svg format.",
"main": "src/index.js",
"scripts": {
"lint": "standard --fix src/*.js | snazzy",
"build": "rollup -c rollup.config.js",
"unit": "jest",
"prepare": "npm run build",
"test": "npm run lint && npm run unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fralonra/basketball-court.git"
},
"keywords": [
"basketball",
"basketball court",
"svg"
],
"author": "zoron (https://github.com/fralonra/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fralonra/basketball-court/issues"
},
"homepage": "https://basketball-court.netlify.com/",
"devDependencies": {
"@babel/preset-env": "^7.7.7",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-json": "^4.0.1",
"jest": "^24.9.0",
"pre-commit": "^1.2.2",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-terser": "^5.1.3",
"snazzy": "^8.0.0",
"standard": "^14.3.1"
}
}