-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.97 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
{
"name": "soukai-solid",
"version": "0.5.2",
"description": "Solid engine for Soukai",
"main": "dist/soukai-solid.cjs.js",
"browser": "dist/soukai-solid.umd.js",
"module": "dist/soukai-solid.esm.js",
"types": "dist/soukai-solid.d.ts",
"sideEffects": false,
"scripts": {
"build": "rm dist -rf && npm run build:js && npm run build:types",
"build:js": "noeldemartin-build-javascript",
"build:types": "noeldemartin-build-types && ./scripts/fix-types.sh",
"lint": "noeldemartin-lint src",
"publish-next": "noeldemartin-publish-next",
"test": "jest --verbose",
"test:summary": "jest --reporters jest-summary-reporter || exit 0",
"test:coverage": "jest --coverage"
},
"engines": {
"node": ">=12.x"
},
"repository": {
"type": "git",
"url": "https://github.com/NoelDeMartin/soukai-solid.git"
},
"author": "Noel De Martin",
"license": "MIT",
"bugs": {
"url": "https://github.com/NoelDeMartin/soukai-solid/issues"
},
"peerDependencies": {
"soukai": "*"
},
"dependencies": {
"@babel/runtime": "^7.13.8",
"@noeldemartin/solid-utils": "0.4.0-next.30aceafb9d58f505d02a146d8e81f2e3a041b92f",
"@noeldemartin/utils": "0.5.1-next.82707467527729a9fe7c2155959beb4b5ea30b81",
"core-js": "^3.9.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.8",
"@microsoft/api-extractor": "^7.18.5",
"@noeldemartin/eslint-config-typescript": "^0.1.1",
"@noeldemartin/faker": "^7.6.0",
"@noeldemartin/scripts": "^0.1.2",
"@noeldemartin/testing": "0.0.0",
"@rdfjs/types": "^1.1.0",
"@types/jest": "^24.0.0",
"@types/jsonld": "^1.5.5",
"@types/n3": "^1.1.6",
"cross-env": "^5.2.0",
"dayjs": "^1.10.5",
"eslint": "^7.20.0",
"jest": "^26.6.3",
"jest-summary-reporter": "0.0.2",
"soukai": "0.5.2-next.376c89f9aaf5d42e43c169445d10fd87ec6aab2d",
"ts-jest": "^26.5.2",
"typescript": "^4.1.5"
}
}