forked from atom/superstring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
51
52
53
{
"name": "superstring",
"version": "2.2.6",
"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": "script/test-native.js",
"test:node": "mocha test/js/*.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",
"prepublish": "not-in-install && npm run build:browser || in-install",
"standard": "standard --recursive src test"
},
"repository": {
"type": "git",
"url": "https://github.com/atom/superstring.git"
},
"keywords": [
"text",
"data-structure"
],
"author": "Nathan Sobo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/atom/superstring/issues"
},
"homepage": "https://github.com/atom/superstring",
"dependencies": {
"nan": "^2.4.0"
},
"devDependencies": {
"chai": "^2.0.0",
"in-publish": "^2.0.0",
"mocha": "^2.3.4",
"random-seed": "^0.2.0",
"stackvis": "^0.4.0",
"standard": "^4.5.4",
"temp": "^0.8.3",
"unzip": "^0.1.11"
},
"standard": {
"global": [
"describe",
"it",
"expect"
]
}
}