forked from longshotlabs/simpl-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.47 KB
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
{
"name": "simpl-schema",
"version": "0.1.0",
"description": "A schema validation package that supports direct validation of MongoDB update modifier objects.",
"author": "Eric Dobbertin <aldeed@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aldeed/node-simple-schema.git"
},
"bugs": {
"url": "https://github.com/aldeed/node-simple-schema/issues"
},
"homepage": "https://github.com/aldeed/node-simple-schema",
"files": [
"dist",
"LICENSE",
"README.md"
],
"main": "./dist/main.js",
"scripts": {
"build": "rm -rf dist/** && babel lib --out-dir dist --ignore *.tests.js,testHelpers/*",
"lint": "eslint .",
"lint:fix": "eslint . --fix || true",
"prepublish": "npm test && npm run build",
"test": "mocha --compilers js:babel-core/register --recursive 'lib/**/*.tests.js'",
"test:watch": "npm test -- --watch"
},
"dependencies": {
"clone": "^1.0.2",
"message-box": "0.0.2",
"mongo-object": "0.0.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.13.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"expect": "^1.20.1",
"mocha": "^2.5.3"
}
}