-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
57 lines (57 loc) · 1.4 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
{
"name": "bouncy-ball",
"version": "1.0.0",
"description": "Compares web animation techniques by bouncing a ball with each one.",
"main": "index.html",
"directories": {
"example": "examples"
},
"scripts": {
"build": "node install-modules.mjs",
"test": "stylelint site/css/*.css && eslint site/js/*.js",
"start": "browser-sync --no-notify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sparkbox/bouncy-ball.git"
},
"keywords": [
"animation"
],
"author": "Bryan Braun",
"license": "MIT",
"bugs": {
"url": "https://github.com/sparkbox/bouncy-ball/issues"
},
"homepage": "https://github.com/sparkbox/bouncy-ball",
"devDependencies": {
"@sparkbox/eslint-config-sparkbox": "1.1.5",
"@sparkbox/stylelint-config-sparkbox": "^2.0.0",
"babel-eslint": "^10.1.0",
"browser-sync": "^2.26.14",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"esinstall": "^1.1.7",
"stylelint": "^13.13.1"
},
"dependencies": {
"platform": "^1.3.6",
"remarkable": "^2.0.1"
},
"esinstall": {
"install": [
"platform",
"remarkable"
],
"installOptions": {
"dest": "site/web_modules"
}
},
"engines": {
"node": ">=14.8.0"
}
}