-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.09 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
{
"name": "line-column",
"version": "1.0.2",
"description": "Convert efficiently index to/from line-column in a string",
"author": "IRIDE Monad <iride.monad@gmail.com>",
"license": "MIT",
"repository": "io-monad/line-column",
"homepage": "https://github.com/io-monad/line-column",
"bugs": {
"url": "https://github.com/io-monad/line-column/issues"
},
"keywords": [
"string",
"index",
"line",
"column",
"linecol",
"position"
],
"main": "lib/line-column.js",
"files": [
"lib"
],
"scripts": {
"test": "gulp test",
"test-ci": "gulp test-ci",
"watch": "gulp watch",
"benchmark": "node benchmark/benchmark.js"
},
"devDependencies": {
"benchmark": "^2.1.0",
"find-line-column": "^0.5.2",
"gulp": "^3.9.1",
"gulp-coveralls": "^0.1.4",
"gulp-istanbul": "^1.0.0",
"gulp-mocha": "^2.2.0",
"gulp-plumber": "^1.1.0",
"intelli-espower-loader": "^1.0.1",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"power-assert": "^1.3.1"
},
"dependencies": {
"isarray": "^1.0.0",
"isobject": "^2.0.0"
}
}