-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "faster-schema",
"version": "2.1.0",
"description": "A schema validation package.",
"author": "Sebastian Kerckhof <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sebakerckhof/faster-schema.git"
},
"bugs": {
"url": "https://github.com/sebakerckhof/faster-schema/issues"
},
"homepage": "https://github.com/sebakerckhof/faster-schema",
"files": [
"dist",
"LICENSE",
"README.md"
],
"main": "./dist/index.js",
"scripts": {
"build": "rm -rf dist/** && babel lib --out-dir dist --ignore *.spec.js,testHelpers/*,examples/*",
"lint": "eslint lib",
"prepare": "npm run lint && npm test && npm run build",
"test": "mocha --require @babel/register --recursive \"lib/**/*.spec.js\"",
"test:watch": "npm test -- --watch"
},
"dependencies": {
"kind-of": "^6.0.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "7.6.2",
"@babel/register": "7.6.2",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.0"
}
}