-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.63 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
{
"name": "constraint-validator",
"main": "dist/constraint-validator.cjs.js",
"module": "dist/constraint-validator.esm.js",
"browser": "dist/constraint-validator.umd.js",
"version": "1.1.8",
"description": "Constraint validation tool",
"scripts": {
"test": "NODE_PATH=./src mocha --require ./tests/bootstrap.js ./tests/**/*.spec.js",
"test:lint": "eslint --ext js -f stylish ./src/ ./tests/",
"test:coverage": "nyc -s npm run test",
"build": "rollup --config rollup.config.js",
"report:coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/OxCom/constraint-validator.git"
},
"keywords": [
"javascript",
"validator",
"constraint"
],
"engines": {
"node": ">=8.0.0",
"npm": ">=5.7.1"
},
"license": "MIT",
"homepage": "https://github.com/OxCom/constraint-validator",
"devDependencies": {
"@babel/preset-env": "^7.16.0",
"@babel/register": "^7.16.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"babel-eslint": "^10.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^7.8.1",
"jsdom": "^18.0.1",
"jsdom-global": "^3.0.2",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"rollup": "^2.59.0",
"@rollup/plugin-babel": "^5.3.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"ipaddr.js": "^2.0.1",
"locutus": "^2.0.15",
"luxon": "^2.1.0"
}
}