forked from madewithlove/mson-to-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "mson-to-schemas",
"description": "Convert an MSON file to JSON schemas",
"license": "MIT",
"version": "0.3.0",
"main": "dist/msonToSchemas.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:madewithlove/mson-to-schemas.git"
},
"keywords": [
"mson",
"json-schema",
"api-blueprint"
],
"author": {
"name": "Madewithlove",
"email": "[email protected]"
},
"bin": {
"mson-to-schemas": "bin/index.js"
},
"dependencies": {
"colors": "^1.1.2",
"commander": "^2.9.0",
"eidolon": "^1.5.0",
"protagonist": "^1.3.3"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.11.1",
"eslint-config-madewithlove": "^3.3.1",
"mocha": "^2.5.3"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "babel src -d dist",
"build:watch": "npm run build -- --watch",
"prepublish": "BABEL_ENV=production npm run build",
"postversion": "git push; git push --tags; npm publish",
"test": "mocha tests --recursive --no-timeouts --compilers js:babel-core/register",
"test:watch": "npm run test -- --watch",
"lint": "eslint src"
}
}