-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 966 Bytes
/
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
{
"name": "drone-canvas",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf lib",
"prebuild": "npm run clean",
"build": "rollup --config",
"start": "npm run build --watch & browser-sync start -s -f lib --no-notify",
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserslist": [
"last 1 chrome version"
],
"author": "Mitch Heddles <mitchell.heddles@gmail.com>",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"babel-eslint": "^10.0.3",
"browser-sync": "^2.26.7",
"eslint": "^6.8.0",
"rimraf": "^3.0.0",
"rollup": "^1.29.0",
"rollup-plugin-babel": "^4.3.3"
},
"dependencies": {
"left-pad": "^1.1.3",
"lodash.throttle": "^4.1.1"
}
}