forked from diosney/node-sequelize-noupdate-attributes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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": "sequelize-noupdate-attributes",
"version": "1.0.0",
"description": "A very simple Sequelize plugin which adds no update and readonly attributes support.",
"main": "lib/index.js",
"keywords": [
"sequelize",
"noupdate",
"no",
"update",
"readonly",
"read",
"only",
"attributes"
],
"devDependencies": {
"istanbul": "0.4.4",
"jshint": "2.9.2",
"mocha": "3.0.2",
"sequelize": "3.24.0",
"should": "^11.1.0",
"sqlite3": "3.1.4"
},
"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"
},
"scripts": {
"test": " ./node_modules/.bin/jshint lib/ test/ && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec"
}
}