-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
41 lines (41 loc) · 1.46 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
{
"name": "ui-predicate-core",
"version": "0.8.0",
"description": "Finally a predicate UI component for the Web",
"main": "lib/ui-predicate-core.js",
"scripts": {
"test": "jest -c ../../jest.js --coverage",
"test:debugger": "node --inspect-brk node_modules/.bin/jest --watch",
"build": "parcel build src/index.js --no-cache --detailed-report --target=browser --out-dir=lib --out-file=ui-predicate-core",
"test:watch": "jest --coverage --watch",
"test:coverage": "jest -c ../../jest.js --maxWorkers=2 --coverage",
"lint": "eslint src",
"docs:build": "npm run --silent build && npm run --silent docs:jsdoc:build && npm run --silent docs:examples:build",
"docs:jsdoc:build": "jsdoc -c ../../jsdoc.json",
"docs:examples:build": "DIR=../../docs/packages/$npm_package_name/$npm_package_version/examples; rm -rf $DIR; parcel build examples/index.html --public-url ./ --no-cache --out-dir=$DIR --target=browser"
},
"author": "Francois-Guillaume Ribreau <[email protected]> (http://fgribreau.com/)",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"jest": "^27.0.6",
"jsdoc": "^3.6.7",
"parcel-bundler": "^1.12.5"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"dependencies": {
"error-ex": "^1.3.1",
"option": "^0.2.4",
"ramda": "^0.26.1"
}
}