-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.19 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "folder-table",
"version": "1.0.1",
"description": "Solid-compatible Panes: File table",
"main": "./dist/folderTable.js",
"files": [
"src",
"lib"
],
"scripts": {
"build": "webpack",
"build-browserified": "npm run build",
"build-dist": "webpack --progress --colors --mode=production",
"build-dev": "webpack --progress --colors --mode=development",
"build-lib": "babel src -d lib --source-maps --extensions '.ts,.js'",
"build-types": "tsc --emitDeclarationOnly",
"build-version": "./timestamp.sh > src/versionInfo.ts && eslint 'src/versionInfo.ts' --fix",
"lint": "eslint 'src/*.ts'",
"lint-fix": "eslint 'src/*.ts' --fix",
"test": "npm run lint",
"prepublishOnly": "npm test",
"postpublish": "git push origin master --follow-tags",
"watch-app": "webpack --watch",
"start": "webpack-dev-server --open"
},
"repository": {
"type": "git",
"url": "https://github.com/solid/folder-table"
},
"keywords": [
"solid",
"file system explorer",
"decentralized",
"web",
"rdf",
"ldp",
"linked",
"pane",
"app",
"data"
],
"author": "Tim Berners-Lee <timbl@mit.edu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/solid/folder-table/issues"
},
"homepage": "https://github.com/solid/folder-table",
"dependencies": {
"solid-ui": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"babel-loader": "^8.1.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.8",
"lint-staged": "^10.0.0-0",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"source-map-loader": "^0.2.4",
"typescript": "^3.8.3",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}