-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "siphon-tools",
"version": "1.1.2",
"description": "A set of tools for annotating the web with Javascript",
"main": "lib/index",
"typings":"lib/index",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BentoBrowser/SiphonTools.git"
},
"keywords": [
"annotation",
"highlighting",
"markup"
],
"author": "Nathan Hahn <nhahn@andrew.cmu.edu>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/BentoBrowser/SiphonTools/issues"
},
"homepage": "https://github.com/BentoBrowser/SiphonTools#readme",
"dependencies": {
"rangy": "github:nhahn/rangy#master",
"uuid": "^3.3.2",
"xpath-dom": "^0.2.2",
"xpath-range": "^1.1.1"
},
"devDependencies": {
"@types/rangy": "0.0.32",
"@types/uuid": "^3.4.5",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"eslint": "^6.0.1",
"typescript": "^3.5.3"
}
}