-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
25 lines (25 loc) · 935 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
{
"name": "grafana-plugin",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf ./dist && ./node_modules/.bin/tsc && cp ./src/plugin.json ./dist && cp -r ./src/partials ./dist && cp -r ./src/css ./dist && cp -r ./src/img ./dist && cp ./src/plugin/*.js ./dist/plugin",
"dev-build": "rm -rf ./dev-build && cp -r ./src ./src-tmp && ./node_modules/.bin/tsc --outdir ./src && mv ./src ./dev-build && mv ./src-tmp ./src",
"tsc": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"start-grafana": "cd /usr/local/Cellar/grafana/4.1.1/share/grafana/conf && grafana-server",
"lint": "tslint -c tslint.json src/**/*.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/angular": "^1.6.2",
"@types/lodash": "^4.14.50",
"@types/jquery": "^2.0.41",
"typescript": "^2.1.5"
},
"devDependencies": {
"tslint": "^4.3.1"
}
}