-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.08 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
{
"name": "svg-command-loader",
"version": "1.0.0",
"description": "Parses path data from an SVG and returns an array of commands.",
"main": "index.js",
"scripts": {
"build": "babel -o index.js src/loader.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://dev.tutive.com/www/svg-command-loader.git"
},
"keywords": [
"svg",
"webpack",
"loader",
"tutive"
],
"author": "Stephen Pegoraro <spegoraro@tutive.com>",
"license": "UNLICENSED",
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports"
]
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"eslint": "^3.0.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"js-beautify": "^1.6.3"
},
"dependencies": {
"svg-path-parser": "^1.0.1",
"xmldom": "^0.1.22"
},
"private": true
}