forked from kilobtye/potrace
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "potrace-js",
"version": "0.0.5",
"description": "Traces bitmap images to vector paths",
"main": "lib/index.js",
"jspm": {
"name": "potrace",
"main": "index.js",
"directories": {
"lib": "src"
},
"devDependencies": {
"plugin-babel": "npm:systemjs-plugin-babel@^0.0.21"
}
},
"scripts": {
"prepublish": "npm run build",
"build": "babel src --out-dir lib",
"test": "echo \"Error: no test specified\" && exit 1"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports"
]
},
"format": "esm",
"repository": {
"type": "git",
"url": "git+https://github.com/casperlamboo/potrace.git"
},
"author": "Casper Lamboo",
"license": "ISC",
"bugs": {
"url": "https://github.com/casperlamboo/potrace/issues"
},
"homepage": "https://github.com/casperlamboo/potrace#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"jspm": "^0.17.0-beta.40"
}
}