forked from longshotlabs/simpl-schema
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.62 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
{
"name": "@clayne/simple-schema",
"version": "0.0.5",
"description": "A schema validation package that supports direct validation of MongoDB update modifier objects.",
"author": "Eric Dobbertin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/clayne11/node-simple-schema.git"
},
"bugs": {
"url": "https://github.com/clayne11/node-simple-schema/issues"
},
"homepage": "https://github.com/clayne11/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": {
"@clayne/message-box": "^0.0.1",
"@clayne/mongo-object": "^0.0.3",
"babel-runtime": "^6.22.0",
"clone": "^2.1.0",
"deep-extend": "^0.4.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.8.0",
"expect": "^1.20.2",
"mocha": "^3.2.0"
}
}