This repository has been archived by the owner on Aug 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.67 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
{
"name": "marker-index",
"version": "4.0.1",
"description": "A data structure to track logical text annotations.",
"main": "dist/native/marker-index.js",
"scripts": {
"test": "npm run standard && node_modules/.bin/mocha ./test/helpers/setup test/marker-index.test.js",
"tdd": "npm run standard && node_modules/.bin/electron-mocha --renderer --interactive --recursive ./test/helpers/setup test/marker-index.test.js",
"profile": "npm run standard && node_modules/.bin/electron-mocha --renderer --interactive --recursive ./test/helpers/setup test/marker-index.profile.js",
"benchmark": "npm run standard && node test/marker-index.benchmark.js",
"prepublish": "npm run standard && npm run clean && npm run build",
"standard": "node_modules/.bin/standard --recursive src test",
"build": "node_modules/.bin/babel src --out-dir dist",
"clean": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "https://github.com/atom/marker-index.git"
},
"keywords": [
"patch data-structure"
],
"author": "Nathan Sobo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/atom/marker-index/issues"
},
"homepage": "https://github.com/atom/marker-index",
"devDependencies": {
"babel": "^5.0.0",
"babel-eslint": "^4.0.5",
"chai": "^2.0.0",
"electron-mocha": "git://github.com/nathansobo/electron-mocha.git#interactive-option",
"electron-prebuilt": "^0.30.1",
"mocha": "^2.1.0",
"standard": "^4.5.4"
},
"dependencies": {
"nan": "^2.1.0",
"random-seed": "^0.2.0"
},
"standard": {
"parser": "babel-eslint",
"global": [
"describe",
"it",
"assert"
]
}
}