This repository was archived by the owner on Aug 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "atom-patch",
"version": "1.0.4",
"description": "A data structure to efficiently represent the results of applying patches.",
"main": "./build/Release/atom_patch",
"scripts": {
"test-native": "node-gyp rebuild --debug --tests && ./build/Debug/tests",
"test-js": "mocha ./test/helpers/setup test/*.js",
"test": "npm run test-native && npm run test-js",
"prepublish": "npm run standard",
"standard": "standard --recursive src test",
"ci": "npm run standard && npm run test",
"ci-windows": "npm run standard && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/nathansobo/atom-patch.git"
},
"keywords": [
"patch data-structure"
],
"author": "Nathan Sobo <nathan@github.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nathansobo/atom-patch/issues"
},
"homepage": "https://github.com/nathansobo/atom-patch",
"dependencies": {
"nan": "^2.4.0"
},
"devDependencies": {
"babel": "^5.0.0",
"babel-eslint": "^4.0.5",
"chai": "^2.0.0",
"mocha": "^2.3.4",
"random-seed": "^0.2.0",
"segfault-handler": "^1.0.0",
"standard": "^4.5.4"
},
"standard": {
"parser": "babel-eslint",
"global": [
"describe",
"it",
"expect"
]
}
}