This repository was archived by the owner on Jul 3, 2023. It is now read-only.
forked from pulsar-edit/superstring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.31 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
{
"name": "@curlconverter/superstring",
"version": "0.0.3",
"description": "A fork of a data structure to efficiently represent the results of applying patches.",
"main": "./index",
"browser": "./browser",
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"build": "node-gyp build",
"test:native": "node ./script/test-native.js",
"test:node": "mocha test/js/*.js",
"test": "npm run test:node",
"benchmark": "node benchmark/marker-index.benchmark.js",
"prepublishOnly": "git submodule update --init --recursive",
"standard": "standard --recursive src test"
},
"repository": {
"type": "git",
"url": "https://github.com/curlconverter/superstring.git"
},
"keywords": [
"text",
"data-structure"
],
"author": "Nathan Sobo <nathan@github.com>",
"license": "MIT",
"homepage": "https://github.com/curlconverter/superstring",
"dependencies": {
"nan": "^2.17.0"
},
"devDependencies": {
"chai": "^2.0.0",
"mocha": "^2.3.4",
"node-gyp": "^9.3.1",
"prebuild": "^11.0.4",
"random-seed": "^0.3.0",
"standard": "^4.5.4",
"temp": "^0.9.4",
"unzip": "^0.1.11"
},
"overrides": {
"prebuild": {
"node-gyp": "$node-gyp"
}
},
"standard": {
"global": [
"describe",
"it",
"expect"
]
}
}