forked from atom/superstring
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 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
{
"name": "@pulsar-edit/superstring",
"version": "3.0.5",
"description": "A data structure to efficiently represent the results of applying patches.",
"main": "./index",
"browser": "./browser",
"scripts": {
"build:node": "node-gyp rebuild",
"build:browser": "script/build-browser-version.sh",
"build": "npm run build:node && npm run build:browser",
"test:native": "node ./script/test-native.js",
"test:node": "mocha test/js/*.test.js",
"test:threads": "node ./test/js/threads-outer.js",
"test:browser": "SUPERSTRING_USE_BROWSER_VERSION=1 mocha test/js/*.js",
"test": "npm run test:node && npm run test:browser",
"benchmark": "node benchmark/marker-index.benchmark.js",
"standard": "standard --recursive src test"
},
"repository": {
"type": "git",
"url": "https://github.com/pulsar-edit/superstring.git"
},
"keywords": [
"text",
"data-structure"
],
"engines": {
"node": ">=16"
},
"author": "Nathan Sobo <nathan@github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pulsar-edit/superstring/issues"
},
"homepage": "https://github.com/pulsar-edit/superstring",
"devDependencies": {
"chai": "^2.0.0",
"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"
]
},
"dependencies": {
"node-addon-api": "^8.5.0"
}
}