-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
54
55
{
"name": "json-schema-sugar",
"version": "1.1.0",
"description": "Create a JSON Schema without the pain of writing it",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"toc": "doctoc README.md --github",
"changelog": "changelog -t ${npm_package_version} -m \"\\[(add|remove|update|fix)\\]\"",
"build": "npm-run-all compile toc",
"compile": "babel src --out-dir lib",
"lint": "eslint src test",
"test": "mocha ./test/*.spec.js",
"prepublish": "in-publish && npm-run-all lint clean build || not-in-publish"
},
"author": "BJR Matos <[email protected]> (https://github.com/bjrmatos)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bjrmatos/json-schema-sugar.git"
},
"bugs": {
"url": "https://github.com/bjrmatos/json-schema-sugar/issues"
},
"homepage": "https://github.com/bjrmatos/json-schema-sugar",
"keywords": [
"json",
"schema",
"json-schema",
"chainable"
],
"devDependencies": {
"babel-cli": "6.16.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.16.0",
"babel-preset-stage-3": "6.17.0",
"babel-register": "6.16.3",
"chai": "3.5.0",
"doctoc": "^1.2.0",
"eslint": "2.13.1",
"eslint-config-airbnb-base": "3.0.1",
"eslint-plugin-import": "1.16.0",
"in-publish": "2.0.0",
"json-stable-stringify": "^1.0.1",
"mocha": "3.1.2",
"mt-changelog": "0.6.2",
"npm-run-all": "3.1.0",
"rimraf": "2.5.4"
},
"dependencies": {
"is-plain-obj": "1.1.0",
"lodash.omit": "4.5.0",
"object-assign": "4.1.0"
}
}