This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
73 lines (73 loc) · 1.93 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "text-buffer",
"version": "13.18.6",
"description": "A container for large mutable strings with annotated regions",
"main": "./lib/text-buffer",
"scripts": {
"prepublish": "npm run clean && npm run compile && npm run lint && npm run docs",
"docs": "node script/generate-docs",
"clean": "rimraf lib api.json",
"compile": "coffee --no-header --output lib --compile src && cpy src/*.js lib/",
"lint": "coffeelint -r src spec && standard src/*.js spec/*.js",
"test": "node script/test",
"ci": "npm run compile && npm run lint && npm run test && npm run bench",
"bench": "node benchmarks/index"
},
"repository": {
"type": "git",
"url": "/~https://github.com/atom/text-buffer.git"
},
"bugs": {
"url": "/~https://github.com/atom/text-buffer/issues"
},
"atomTestRunner": "atom-jasmine2-test-runner",
"license": "MIT",
"devDependencies": {
"atom-jasmine2-test-runner": "^1.0.0",
"coffee-cache": "^0.2.0",
"coffee-script": "^1.10.0",
"coffeelint": "1.16.0",
"cpy-cli": "^1.0.1",
"dedent": "^0.6.0",
"donna": "^1.0.16",
"electron": "^6",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"joanna": "0.0.11",
"json-diff": "^0.3.1",
"random-seed": "^0.2.0",
"regression": "^1.2.1",
"rimraf": "~2.2.2",
"standard": "^10.0.3",
"tello": "^1.0.7",
"temp": "^0.8.3",
"yargs": "^6.5.0"
},
"dependencies": {
"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",
"pathwatcher": "^8.1.0",
"serializable": "^1.0.3",
"superstring": "^2.4.4",
"underscore-plus": "^1.0.0",
"winattr": "^3.0.0"
},
"standard": {
"env": {
"atomtest": true,
"browser": true,
"jasmine": true,
"node": true
},
"globals": [
"atom",
"snapshotResult"
]
}
}