-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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": "scroll-scene-element",
"type": "module",
"version": "0.1.1",
"description": "A tiny custom element for all your scrollytelling needs.",
"main": "./dist/scroll-scene-element.js",
"exports": "./dist/scroll-scene-element.js",
"types": "./dist/scroll-scene-element.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "microbundle src/scroll-scene-element.ts --format modern",
"clean": "premove dist",
"prebuild": "npm run clean",
"pretest": "npm run build",
"start": "sirv . --dev --port 3000",
"test": "playwright test",
"watch": "microbundle watch src/scroll-scene-element.ts --format modern --no-compress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdmurphy/scroll-scene-element.git"
},
"keywords": [
"scrollytelling",
"interactive",
"graphic",
"custom-elements",
"web-components"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rdmurphy/scroll-scene-element/issues"
},
"homepage": "https://github.com/rdmurphy/scroll-scene-element#readme",
"devDependencies": {
"@playwright/test": "^1.20.0",
"@rdm/prettier-config": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-plugin-unicorn": "^41.0.1",
"microbundle": "^0.14.2",
"premove": "^4.0.0",
"prettier": "^2.6.0",
"sirv-cli": "^2.0.2",
"typescript": "^4.6.2"
},
"prettier": "@rdm/prettier-config"
}