-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 988 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "webpack-loader-rdf",
"version": "0.2.0",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"lint": "standard --fix",
"release": "changeset publish"
},
"files": [
"index.js"
],
"dependencies": {
"@rdfjs/serializer-rdfjs": "^0.1",
"@rdfjs/formats-common": "^2.2.0",
"rdf-utils-fs": "^2.2.0",
"string-to-stream": "^3.0.1"
},
"devDependencies": {
"@changesets/cli": "^2.21.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"standard": "^16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hypermedia-app/webpack-loader-rdf.git"
},
"author": "Tomasz Pluskiewicz",
"license": "MIT",
"bugs": {
"url": "https://github.com/hypermedia-app/webpack-loader-rdf/issues"
},
"homepage": "https://github.com/hypermedia-app/webpack-loader-rdf#readme",
"lint-staged": {
"*.{js,ts}": [
"standard --fix --quiet"
]
},
"engines": {
"node": ">=13"
}
}