-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 914 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
{
"name": "stroke-recognition",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"pretest": "tslint src/**/*.ts",
"test": "echo \"Error: no test specified\"",
"build": "npm run clean && rollup -c",
"start": "rollup -cw",
"clean": "rm -rf dist .cache",
"deploy": "npm run clean && npm run build && gh-pages -d dist"
},
"author": "David García Miguel <[email protected]>",
"license": "MIT",
"devDependencies": {
"eventemitter3": "^3.1.0",
"gh-pages": "^2.0.1",
"rollup": "^1.4.1",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-livereload": "^1.0.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-typescript2": "^0.19.3",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
},
"dependencies": {
"tslib": "^1.9.3"
}
}