-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.33 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
{
"name": "@fulcrumapp/fulcrum-schema",
"version": "3.7.3",
"description": "Table schemas for Fulcrum apps",
"main": "fulcrum-schema.js",
"repository": {
"type": "git",
"url": "git://github.com/fulcrumapp/fulcrum-schema.git"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha -r ts-node/register ./test/setup.js test/test-postgres.js test/test-sqlite.js test/test-v2-to-v3.js test/test-v3-to-v4.js test/test-v4-to-v5.js --reporter-option maxDiffSize=20000",
"lint": "eslint src/*.js src/**/*.js",
"build": "tsc && cp package.json dist && browserify dist/fulcrum-schema.js > dist/fulcrum-schema.min.js --mangle",
"clean": "rm -rf dist"
},
"author": "Fulcrum",
"license": "BSD",
"eslintConfig": {
"extends": "fulcrum"
},
"dependencies": {
"lodash": "^4.17.21",
"sqldiff": "^0.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"browserify": "^17.0.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"fs-sync": "^1.0.6",
"mocha": "^10.1.0",
"season": "^6.0.2",
"should": "^13.2.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}