-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "fashion-model",
"description": "JavaScript library for defining types and their properties with support for wrapping/unwrapping and serialization/deserialization.",
"keywords": [
"data",
"models",
"types",
"data-modeling",
"modeling"
],
"homepage": "https://github.com/philidem/fashion-model",
"repository": {
"type": "git",
"url": "https://github.com/philidem/fashion-model.git"
},
"author": "Phil Gates-Idem <[email protected]",
"scripts": {
"lint": "eslint .",
"test": "ava --verbose 'test/**/*.test.js'"
},
"main": "./Model.js",
"devDependencies": {
"ava": "^0.22.0",
"eslint": "^4.9.0",
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^3.0.1",
"jayschema": "^0.3.1",
"z-schema": "^3.9.4"
},
"dependencies": {
"events": "^1.1.1"
},
"version": "6.1.0"
}