forked from tilgovi/dom-anchor-text-quote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.75 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "dom-anchor-text-quote",
"version": "4.0.2",
"description": "Convert between DOM Range instances and text quotes.",
"main": "index.js",
"scripts": {
"test": "eslint src && BABEL_ENV=test karma start --single-run",
"prepublish": "babel -d lib src"
},
"repository": {
"type": "git",
"url": "https://github.com/tilgovi/dom-anchor-text-quote.git"
},
"keywords": [
"dom",
"anchor",
"range",
"text",
"quote"
],
"author": "Randall Leeds <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tilgovi/dom-anchor-text-quote/issues"
},
"homepage": "https://github.com/tilgovi/dom-anchor-text-quote",
"dependencies": {
"diff-match-patch": "^1.0.0",
"dom-anchor-text-position": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-plugin-istanbul": "^2.0.0",
"babel-preset-es2015": "^6.13.2",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"codecov.io": "^0.1.6",
"eslint": "^3.6.0",
"karma": "^1.3.0",
"karma-browserify": "^5.1.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.2",
"mocha": "^3.0.2",
"phantomjs-prebuilt": "^2.1.12",
"watchify": "^3.7.0"
},
"babel": {
"env": {
"test": {
"plugins": [
"istanbul"
]
}
},
"presets": [
"es2015"
],
"sourceMaps": "inline"
},
"eslintConfig": {
"env": {
"commonjs": true
},
"extends": "eslint:recommended",
"parser": "babel-eslint",
"rules": {
"comma-dangle": 0
}
}
}