-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.48 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
{
"name": "@ldflex/rdflib",
"version": "1.0.0",
"description": "rdflib.js query engine support for the LDflex language",
"author": "Ruben Verborgh <[email protected]> (https://ruben.verborgh.org/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LDflex/LDflex-rdflib"
},
"main": "lib/index.js",
"module": "src/index.js",
"sideEffects": false,
"files": [
"src",
"lib"
],
"dependencies": {
"rdflib": "^2.2.0"
},
"peerDependencies": {
"ldflex": "^2.8.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@pollyjs/adapter-node-http": "^5.1.0",
"@pollyjs/core": "^5.1.0",
"@pollyjs/persister-fs": "^5.0.0",
"eslint": "^7.27.0",
"eslint-plugin-jest": "^24.3.6",
"husky": "^6.0.0",
"jest": "^26.6.3",
"semantic-release": "^17.4.2",
"setup-polly-jest": "^0.9.1"
},
"scripts": {
"build": "npm run build:lib",
"build:lib": "babel src --out-dir lib",
"jest": "jest",
"lint": "eslint src test",
"prepublishOnly": "npm run build",
"test": "npm run lint && npm run jest",
"test:dev": "npm run jest -- --watch"
},
"release": {
"branches": [
"master",
"+([0-9])?(.{+([0-9]),x}).x",
"next",
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
]
},
"publishConfig": {
"access": "public"
}
}