forked from atom/text-buffer
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.54 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.54 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
55
56
57
58
59
60
61
62
63
64
{
"name": "@pulsar-edit/text-buffer",
"version": "14.0.3",
"description": "A container for large mutable strings with annotated regions",
"main": "./src/text-buffer",
"scripts": {
"prepublish": "npm run clean",
"clean": "rimraf lib api.json",
"test": "node script/test",
"ci": "npm run test && npm run bench",
"bench": "node benchmarks/index"
},
"repository": {
"type": "git",
"url": "https://github.com/pulsar/text-buffer.git"
},
"bugs": {
"url": "https://github.com/pulsar/text-buffer/issues"
},
"atomTestRunner": "atom-jasmine2-test-runner",
"license": "MIT",
"devDependencies": {
"atom-jasmine2-test-runner": "^1.0.0",
"cpy-cli": "^1.0.1",
"dedent": "^0.6.0",
"electron": "^30",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"json-diff": "^0.3.1",
"random-seed": "^0.2.0",
"regression": "^1.2.1",
"rimraf": "~2.2.2",
"standard": "^10.0.3",
"temp": "^0.8.3",
"yargs": "^6.5.0"
},
"dependencies": {
"@pulsar-edit/pathwatcher": "^9.0.2",
"@pulsar-edit/superstring": "^3.0.4",
"delegato": "^1.0.0",
"diff": "^2.2.1",
"emissary": "^1.0.0",
"event-kit": "^2.4.0",
"fs-admin": "^0.19.0",
"fs-plus": "^3.0.0",
"grim": "^2.0.2",
"mkdirp": "^0.5.1",
"serializable": "^1.0.3",
"underscore-plus": "^1.0.0",
"winattr": "^3.0.0"
},
"standard": {
"env": {
"atomtest": true,
"browser": true,
"jasmine": true,
"node": true
},
"globals": [
"atom",
"snapshotResult"
]
}
}