forked from alexcorvi/anchorme.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "anchorme",
"version": "2.1.2",
"description": "A library to convert URLs to a clickable HTML anchor elements",
"main": "./dist/node/index.js",
"types": "./dist/node/index.d.ts",
"scripts": {
"test": "mocha",
"testw": "mocha -w",
"build": "./node_modules/.bin/ts-node ./build/build.ts",
"buildw": "./node_modules/.bin/ts-node ./build/build.ts -w",
"update-tlds": "./node_modules/.bin/ts-node build/tlds/update.ts",
"server": "./node_modules/.bin/lite-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexcorvi/anchorme.js.git"
},
"keywords": [
"text",
"to",
"anchor",
"tags"
],
"author": "Alex Corvi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexcorvi/anchorme.js/issues"
},
"homepage": "http://alexcorvi.github.io/anchorme.js/",
"devDependencies": {
"@rollup/plugin-buble": "^0.21.1",
"@rollup/plugin-commonjs": "^11.0.2",
"@types/expect": "^24.3.0",
"@types/mocha": "^7.0.2",
"@types/node-fetch": "^2.5.5",
"@types/uglify-js": "^3.0.4",
"chokidar": "^3.3.1",
"expect": "^25.2.3",
"lite-server": "^2.5.4",
"mocha": "^7.1.1",
"node-fetch": "^2.6.0",
"rollup": "^2.2.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"uglify-js": "^3.8.0"
}
}