forked from atom/superstring
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.59 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.59 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
{
"name": "superstring",
"version": "2.4.4",
"description": "A data structure to efficiently represent the results of applying patches.",
"main": "./index",
"browser": "./browser",
"scripts": {
"build:node": "node-gyp rebuild",
"build:browser": "bash -c script/build-browser-version.sh || echo 'the browser build is unsupported'",
"build": "npm run build:node && npm run build:browser",
"test:native": "node-gyp build --debug --tests && node script/test-native.js",
"test:node": "mocha test/js/*.js",
"test:browser": "cross-env SUPERSTRING_USE_BROWSER_VERSION=1 mocha test/js/*.js || echo 'the browser tests are unsupported'",
"test": "npm run test:node && npm run test:native && npm run test:browser",
"benchmark": "node benchmark/marker-index.benchmark.js",
"prepublishOnly": "git submodule update --init --recursive && npm run build:browser",
"standard": "standard --recursive src test"
},
"repository": {
"type": "git",
"url": "https://github.com/atom/superstring.git"
},
"keywords": [
"text",
"data-structure"
],
"author": "Nathan Sobo <nathan@github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/atom/superstring/issues"
},
"homepage": "https://github.com/atom/superstring",
"dependencies": {
"nan": "^2.14.2"
},
"devDependencies": {
"chai": "^2.0.0",
"cross-env": "^7.0.3",
"mocha": "^2.3.4",
"random-seed": "^0.2.0",
"standard": "^4.5.4",
"temp": "^0.8.3",
"unzip": "^0.1.11"
},
"standard": {
"global": [
"describe",
"it",
"expect"
]
}
}