forked from duartealexf/sql-ddl-to-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.22 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "sql-ddl-to-mongoose-schema",
"version": "3.0.1",
"description": "Parse and convert SQL DDL statements to a Mongoose Schema.",
"main": "index.js",
"author": "Mahammad Chharchhodawala <mahammadkc@gmail.com> (https://github.com/Mahammad8564)",
"maintainers": [
"Mahammad Chharchhodawala <mahammadkc@gmail.com> (https://github.com/Mahammad8564)"
],
"scripts": {
"standard-version": "node_modules/.bin/standard-version",
"nearley-test": "node_modules/nearley/bin/nearley-test.js",
"nodemon-watch": "nodemon -w lib -w src -w test -e ne,js --ignore lib",
"nearleyc": "node_modules/nearley/bin/nearleyc.js",
"eslint": "node_modules/.bin/eslint",
"ava": "node_modules/ava/cli.js",
"nyc": "node_modules/nyc/bin/nyc.js",
"coverage": "yarn run nyc ava test/**/*.spec.js",
"test": "ava --color test/**/*.spec.js",
"lint": "eslint src tasks test lib --fix",
"prebuild:mysql": "node tasks/mysql/assembly.js && node tasks/mysql/formatters.js",
"build:mysql": "nearleyc lib/mysql/parser/grammar.ne > lib/mysql/parser/grammar.js",
"build": "yarn run build:mysql",
"test:watch": "yarn run nodemon-watch --exec 'yarn run test'",
"build:watch": "yarn run nodemon-watch --exec 'yarn run build'",
"prerelease": "yarn run lint && yarn run build",
"release": "standard-version && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/Mahammad8564/sql-ddl-to-mongoose-schema"
},
"homepage": "https://github.com/Mahammad8564/sql-ddl-to-mongoose-schema",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mahammad8564/sql-ddl-to-mongoose-schema/issues"
},
"dependencies": {
"moo": "^0.4.3",
"nearley": "^2.13.0"
},
"devDependencies": {
"ava": "^0.22.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.7.0",
"fs-extra": "^5.0.0",
"nodemon": "^1.14.11",
"nyc": "^11.6.0",
"standard-version": "^4.3.0",
"winston": "^3.0.0-rc0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"engines": {
"node": ">=6.0.0 <=10"
}
}