-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.9 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@asl/schema",
"version": "10.18.7",
"description": "Sequelize schema for licensing models",
"main": "index.js",
"scripts": {
"pretest:functional": "NODE_ENV=test npm run migrate",
"test": "npm run test:lint && npm run test:unit && npm run test:functional && npm run test:migrations",
"test:lint": "eslint .",
"test:unit": "mocha ./test/unit --recursive --exit",
"test:functional": "SNAKE_MAPPER=true mocha ./test/functional --recursive --exit",
"test:migrations": "SNAKE_MAPPER=false nyc mocha ./test/migrations --recursive --exit",
"test:audit": "audit-ci --high --skip-dev --config .auditrc.json",
"migrate": "knex migrate:latest",
"rollback": "knex migrate:rollback",
"seed": "SNAKE_MAPPER=true knex seed:run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UKHomeOffice/asl-schema.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKHomeOffice/asl-schema/issues"
},
"homepage": "https://github.com/UKHomeOffice/asl-schema#readme",
"dependencies": {
"@ukhomeoffice/asl-constants": "^2.1.7",
"audit-ci": "^6.5.0",
"csv-stringify": "^5.4.3",
"deep-diff": "^1.0.2",
"glob": "^7.1.7",
"immutable": "^4.0.0-rc.12",
"knex": "^0.21.21",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"moment": "^2.29.3",
"objection": "^2.2.17",
"pg": "^8.7.3",
"pg-query-stream": "^2.0.1",
"pg-tsquery": "^8.2.0",
"sinon": "^9.0.2",
"slate": "^0.47.8",
"uuid": "^3.3.2"
},
"publishConfig": {
"registry": "https://artifactory.digital.homeoffice.gov.uk/artifactory/api/npm/npm-virtual/"
},
"devDependencies": {
"chai": "^4.1.2",
"dotenv": "^6.0.0",
"eslint": "^5.16.0",
"@ukhomeoffice/eslint-config-asl": "^3.0.0",
"faker": "^5.1.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"uuid-validate": "0.0.3"
}
}