-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
55 lines (55 loc) · 1.87 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
{
"name": "link-to-text-fragment",
"version": "2.5.0",
"description": "Browser extension that allows for linking to arbitrary text fragments.",
"type": "module",
"scripts": {
"fix": "npx prettier --write .",
"lint": "npx eslint ./*.js --fix",
"prepare": "npm run fix && npm run lint && npx rollup ./node_modules/text-fragments-polyfill/src/fragment-generation-utils.js --dir . && npx babel ./fragment-generation-utils.js --out-file ./fragment-generation-utils.js --plugins @babel/plugin-transform-modules-commonjs",
"safari": "xcrun safari-web-extension-converter . --project-location ../safari-extensions/link-to-text-fragment --copy-resources --swift --force --bundle-identifier com.google.googlechromelabs.link-to-text-fragment"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChromeLabs/link-to-text-fragment.git"
},
"keywords": [
"text fragment",
"link to text fragment",
"scroll to text fragment"
],
"author": "Thomas Steiner (https://blog.tomayac.com/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GoogleChromeLabs/link-to-text-fragment/issues"
},
"homepage": "https://github.com/GoogleChromeLabs/link-to-text-fragment#readme",
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.7",
"@babel/plugin-transform-modules-commonjs": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/runtime-corejs3": "^7.25.7",
"core-js": "^3.38.1",
"eslint": "^9.12.0",
"eslint-config-google": "^0.14.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"shx": "^0.3.4",
"text-fragments-polyfill": "6.1.0"
},
"eslintConfig": {
"env": {
"es6": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"extends": [
"eslint:recommended",
"google"
]
}
}