-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 984 Bytes
/
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
{
"name": "json-schema-trainer",
"version": "1.1.1",
"repository": {
"type": "git",
"url": "https://github.com/davisml/json-schema-trainer"
},
"description": "Create JSON Schemas by training with objects",
"main": "dist.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/babel ./src/SchemaTrainer.js -o ./dist.js",
"prepublish": "npm run build",
"start": "node index.js"
},
"author": "Mark Davis",
"license": "ISC",
"dependencies": {
"underscore": "^1.8.3"
},
"devDependencies": {
"ajv": "^4.7.3",
"babel-cli": "^6.16.0",
"babel-core": "^6.14.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.14.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-node6": "^11.0.0",
"babel-register": "^6.14.0",
"request": "^2.75.0",
"request-promise-native": "^1.0.3"
}
}