forked from szimek/signature_pad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "signature_pad",
"description": "Library for drawing smooth signatures.",
"version": "2.3.2",
"homepage": "https://github.com/szimek/signature_pad",
"author": {
"name": "Szymon Nowak",
"email": "[email protected]",
"url": "https://github.com/szimek"
},
"license": "MIT",
"main": "dist/signature_pad.js",
"module": "dist/signature_pad.mjs",
"scripts": {
"build": "gulp",
"watch": "gulp watch",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/szimek/signature_pad.git"
},
"files": [
"src",
"dist",
"example"
],
"devDependencies": {
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"del": "^2.2.2",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"gulp": "^3.9.1",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-uglify": "^1.0.1"
}
}