-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "diffless",
"version": "0.0.1",
"description": "Extensible diff tool with high signal-to-noise ratio",
"main": "index.js",
"author": "Ygor Mutti <[email protected]>",
"license": "LGPL-3.0",
"bin": {
"diffless": "./diffless/bin/index.js"
},
"scripts": {
"test": "jest",
"lint": "tslint --project .",
"parcel-watch": "parcel watch diffless/html/index.tsx --no-hmr"
},
"dependencies": {
"classnames": "^2.2.6",
"commander": "^2.20.0",
"decko": "^1.2.0",
"json-tokenize": "^0.3.0",
"lodash": "^4.17.5",
"mime": "^2.4.4",
"preact": "^8.2.9",
"preact-render-to-string": "^3.7.0",
"tempy": "^0.3.0"
},
"devDependencies": {
"@types/classnames": "2.2.4",
"@types/commander": "2.12.2",
"@types/jest": "22.2.3",
"@types/lodash": "4.14.107",
"@types/mime": "2.0.1",
"@types/node": "9.6.5",
"jest": "22.4.3",
"node-sass": "^4.9.0",
"parcel-bundler": "1.8.1",
"ts-jest": "22.4.4",
"tslint": "5.9.1",
"typescript": "3.5.2"
}
}