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": "@lightscale/laralight-tables",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git@lightscale.co.uk:laralight-tables"
},
"license": "MIT",
"author": "Sam Light <sam@lightscale.co.uk>",
"type": "module",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"watch": "webpack --mode=development --watch",
"build": "webpack --mode=development",
"prod": "webpack --mode=production --progress"
},
"devDependencies": {
"@lightscale/eslint-config": "^1.0.2",
"@lightscale/webpack-config": "^1.0.0"
}
}
|