-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.75 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
{
"name": "wootom",
"version": "0.7.0",
"author": {
"name": "David Straka",
"email": "davidstraka.public@gmail.com"
},
"license": "MIT",
"homepage": "https://github.com/davidstraka2/wootom#readme",
"description": "WooWoo Editor for Atom",
"keywords": [
"WooWoo",
"woo"
],
"bugs": {
"url": "https://github.com/davidstraka2/wootom/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/davidstraka2/wootom.git"
},
"main": "./lib/wootom",
"engines": {
"atom": "^1.54.0"
},
"activationCommands": {
"atom-workspace": [
"wootom:hello",
"wootom:toggleNavigation",
"wootom:togglePreview"
]
},
"atomTestRunner": "atom-jasmine3-test-runner",
"scripts": {
"build": "tsc --build src/lib src/spec",
"clean": "node scripts/clean.mjs",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint:check": "eslint src --max-warnings=0",
"lint:fix": "eslint src --max-warnings=0 --fix",
"pack": "node scripts/pack.mjs",
"test": "atom --test spec"
},
"devDependencies": {
"@types/atom": "^1.40.7",
"@types/fs-extra": "^9.0.11",
"@types/jasmine": "^3.6.4",
"@types/lodash": "^4.14.168",
"@types/sinon": "^9.0.11",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"atom-jasmine3-test-runner": "^5.2.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"prettier": "2.2.1",
"sinon": "^9.2.4",
"typescript": "^4.1.5"
},
"dependencies": {
"execa": "^5.0.0",
"fs-extra": "^9.1.0",
"fuse.js": "^6.4.6",
"lodash": "^4.17.21",
"mathjax": "^2.6.1",
"uuid": "^8.3.2",
"yaml": "^1.10.2"
}
}