forked from mediasmart/bobby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.28 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.28 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
{
"name": "bobby.js",
"description": "A declarative way of validating complex javascript nested objects.",
"version": "0.0.7",
"main": "./lib/index.js",
"homepage": "https://github.com/mediasmart/bobby#readme",
"author": "Javi Jimenez Villar <hello@soyjavi.com> (http://soyjavi.com/)",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/mediasmart/bobby.git"
},
"bugs": {
"url": "https://github.com/mediasmart/bobby/issues",
"email": "tech@mediasmart.io"
},
"scripts": {
"start": "npm run build & npm run terminal",
"test": "npm run mocha",
"build": "babel src --out-dir lib",
"mocha": "mocha --recursive --compilers js:babel-register --require babel-polyfill",
"lint:js": "eslint ./src/**/*.js"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.14.0",
"babel-eslint": "~6.1.2",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "~3.5.0",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"mocha": "^2.5.3"
},
"directories": {
"test": "test"
}
}