-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.75 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": "@wootapa/polygraph",
"version": "1.0.1",
"description": "Tests objects with queries constructed using logical and comparison operators.",
"types": "dist/polygraph.d.ts",
"main": "dist/polygraph.umd.js",
"unpkg": "dist/polygraph.umd.js",
"module": "dist/polygraph.esm.js",
"browser": "dist/polygraph.esm.js",
"scripts": {
"start": "npm run build",
"lint": "eslint --ext .ts ./src",
"test": "jest",
"build": "npm run lint && rollup -c --bundleConfigAsCjs"
},
"files": [
"dist/**/*.{js,map,ts}"
],
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11",
"maintained node versions"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wootapa/polygraph.git"
},
"keywords": [
"WootApa",
"Evaluate",
"Logical",
"Comparison"
],
"author": "Andreas Petersson",
"license": "MIT",
"bugs": {
"url": "https://github.com/wootapa/polygraph/issues"
},
"homepage": "https://github.com/wootapa/polygraph#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-typescript": "^3.0.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"rollup": "^3.2.3",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.8.4"
},
"dependencies": {
"performance-now": "^2.1.0"
}
}