-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.88 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
{
"name": "@twilio-labs/svg-to-react",
"version": "2.1.0",
"description": "A utility to convert raw svg files into accessible and extendable React Components.",
"author": "Twilio Inc",
"license": "MIT",
"main": "dist/main.js",
"typings": "dist/main",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"index.js"
],
"scripts": {
"clean": "rimraf coverage dist",
"build": "tsc -b tsconfig.release.json",
"build:watch": "tsc -b -w tsconfig.release.json",
"lint": "eslint src/* __tests__/*",
"test": "jest --coverage",
"test:watch": "jest --watch",
"convert": "./index.js convert",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@svgr/babel-plugin-add-jsx-attribute": "^5.0.1",
"@svgr/babel-plugin-remove-jsx-attribute": "^5.0.1",
"@svgr/cli": "^5.1.0",
"@svgr/core": "^5.0.1",
"@svgr/plugin-jsx": "^5.0.1",
"@svgr/plugin-prettier": "^5.0.1",
"@svgr/plugin-svgo": "^5.1.0",
"prettier": "^2.2.1",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/node": "^13.7.1",
"@types/prettier": "^1.19.0",
"@types/promise-timeout": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"commander": "^4.1.1",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-standard": "^4.0.1",
"inquirer": "^7.0.4",
"jest": "^25.1.0",
"jest-runner-prettier": "^0.3.6",
"prettier-eslint": "^9.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^25.2.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5"
}
}