-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.3 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
{
"name": "sophisticate",
"version": "0.1.1",
"author": "Frédéric Maquin <fred@ephread.com> (http://ephread.com)",
"description": "Sophisticate the output from SVG editors, to display them within interactive web pages.",
"keywords": [
"SVG",
"svg",
"transform",
"preprocess",
"process",
"convert",
"prepare"
],
"bin": {
"sophisticate": "./bin/sophisticate"
},
"scripts": {
"build": "tsc -p ./",
"watch": "tsc -w -p ./",
"lint": "eslint 'src/**/*.ts'",
"prepublishOnly": "npm run-script build",
"test": "jest"
},
"bugs": "https://github.com/ephread/sophisticate/issues",
"repository": "ephread/sophisticate",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/ejs": "^3.0.4",
"@types/jest": "^26.0.0",
"@types/js-yaml": "^3.12.4",
"@types/libxmljs": "^0.18.6",
"@types/svgo": "^1.3.3",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.2.0",
"jest": "^26.0.1",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
},
"dependencies": {
"chalk": "^4.1.0",
"ejs": "^3.1.3",
"js-yaml": "^3.14.0",
"libxmljs": "^0.19.7",
"svgo": "^1.3.2",
"tslint": "^6.1.2",
"yargs": "^15.3.1"
},
"license": "MIT"
}