-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "read-smore",
"version": "2.5.0",
"description": "A simple read more / read less feature in vanilla js",
"author": "Stephen Scaff <stephenscaff.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stephenscaff/read-smore"
},
"bugs": {
"url": "https://github.com/stephenscaff/read-smore/issues"
},
"homepage": "https://stephenscaff.github.io/read-smore",
"keywords": [
"read smore",
"readsmore",
"read more",
"readmore.js",
"read-more-js",
"ellipse",
"truncate",
"content",
"more content"
],
"main": "dist/index.js",
"unpkg": "dist/index.umd.js",
"files": [
"dist"
],
"targets": {
"main": false,
"module": false,
"browser": false
},
"scripts": {
"clean": "rm -rf dist",
"build": "microbundle",
"dev": "npm run demo:start && microbundle watch",
"demo:start": "parcel ./docs/src/*.html --dist-dir ./docs/dist",
"demo:build": "parcel build ./docs/src/index.html --dist-dir ./docs/dist --public-url ./",
"demo:deploy": "npm run demo:build && gh-pages -d ./docs/dist",
"demo:clean": "rm -rf ./docs/dist",
"lint": "eslint ./src/**js --fix "
},
"devDependencies": {
"@parcel/transformer-sass": "^2.10.0",
"eslint": "^8.52.0",
"gh-pages": "^5.0.0",
"microbundle": "^0.15.1",
"parcel": "^2.10.0"
},
"type": "module"
}