-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
{
"name": "@versal/sdk-gadget",
"version": "0.1.2",
"description": "Versal's SDK placeholder gadget",
"repository": {
"type": "git",
"url": "https://github.com/versal/frontend-sdk-gadget"
},
"author": "Versal engineering",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/versal/frontend-sdk-gadget/issues"
},
"homepage": "https://github.com/versal/frontend-sdk-gadget",
"scripts": {
"dev": "rimraf dist && *:watch",
"build": "rimraf dist && webpack -p",
"build:watch": "webpack -d --watch",
"test": "echo no tests in this repo",
"test:watch": "echo no tests in this repo",
"pretest": "standard",
"prepublish": "yarn build",
"lint": "standard"
},
"files": [
"dist"
],
"main": "dist/versal-sdk-gadget.js",
"devDependencies": {
"@versal/config-helpers": "^1.0.3",
"babel-eslint": "^7.2.3",
"babel-register": "^6.24.1",
"rimraf": "^2.6.1",
"standard": "^10.0.2",
"webpack": "^3.4.1"
},
"standard": {
"parser": "babel-eslint"
}
}