-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.43 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
{
"name": "formn",
"version": "5.14.2",
"description": "Formn, pronounced foreman, is an object-relational mapper for Node.js. What's the \"F\" stand for? It depends on your mood.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Ben Botto",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"doc": "typedoc --options ./typedoc.js ./src",
"test": "ts-node ./node_modules/.bin/jasmine --config=./jasmine.json --reporter=jasmine-console-reporter",
"test:debug": "node --inspect-brk=0.0.0.0:9229 -r ts-node/register ./node_modules/.bin/jasmine --config=./jasmine.json --reporter=jasmine-console-reporter",
"clean": "rm -rf doc dist",
"watch:test": "chokidar --initial \"src/**/*.ts\" -c \"npm run test\"",
"watch:doc": "chokidar --initial \"src/**/*.ts\" -c \"npm run doc\"",
"prepublishOnly": "npm run test && npm run clean && npm run build"
},
"devDependencies": {
"@types/jasmine": "3.x.x",
"chokidar-cli": "2.x.x",
"jasmine": "3.x.x",
"jasmine-console-reporter": "3.x.x",
"ts-node": "8.x.x",
"typedoc": "0.x.x"
},
"dependencies": {
"@types/mysql2": "types/mysql2",
"@types/node": "10.x.x",
"@types/pluralize": "0.x.x",
"bsy-validation": "2.x.x",
"change-case": "3.x.x",
"moment": "2.x.x",
"mysql2": "1.x.x",
"pluralize": "7.x.x",
"reflect-metadata": "0.x.x",
"typescript": "3.x.x"
}
}