forked from alexcorvi/anchorme.js
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.37 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.37 KB
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
56
57
58
{
"name": "anchorme",
"version": "1.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": "jest",
"bench": "node benchmark/bench",
"build": "node build/build",
"prepublish": "npm run test && npm run bench && npm run build",
"watch": "watch 'npm run build' src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexcorvi/anchorme.js.git"
},
"keywords": [
"text",
"to",
"anchor",
"tags"
],
"author": "Alex Corvi <alex@arrayy.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexcorvi/anchorme.js/issues"
},
"homepage": "http://alexcorvi.github.io/anchorme.js/",
"devDependencies": {
"@types/jest": "^19.2.2",
"jest": "^19.0.2",
"rollup": "^0.41.6",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.2",
"ts-jest": "^19.0.7",
"typescript": "^2.2.2",
"uglify-js": "^2.8.21",
"watch": "^1.0.2"
},
"dependencies": {},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": ".*spec\\.(ts|js)$",
"globals": {
"__TS_CONFIG__": {
"module": "commonjs"
}
}
}
}