-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.5 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
{
"name": "sequelize-noupdate-attributes",
"version": "2.0.2",
"description": "A Sequelize plugin which adds no update and readonly attributes support to models.",
"main": "./lib/index.js",
"scripts": {
"build": "npm run build:ts",
"build:ts": "npm run clean && npx tsc --project tsconfig.json",
"clean": "npx rimraf ./lib",
"test": "npm run build && npx mocha --spec=./__tests__/**/*.ts"
},
"keywords": [
"sequelize",
"noupdate",
"no",
"update",
"readonly",
"read",
"only",
"attributes",
"models",
"models"
],
"peerDependencies": {
"sequelize": ">=6.16.0"
},
"engines": {
"node": ">=14.0.0"
},
"homepage": "https://github.com/diosney/node-sequelize-noupdate-attributes",
"bugs": {
"url": "https://github.com/diosney/node-sequelize-noupdate-attributes/issues"
},
"author": {
"name": "Diosney Sarmiento",
"email": "diosney.s@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/diosney/node-sequelize-noupdate-attributes.git"
},
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/diosney"
},
"files": [
"lib/"
],
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.1",
"@types/node": "^18.17.5",
"chai": "^4.4.1",
"mocha": "^10.5.2",
"rimraf": "^5.0.7",
"sequelize": "^6.16.0",
"source-map-support": "^0.5.21",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}