-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.07 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
{
"name": "nestedtypes",
"version": "1.0.0",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"description": "BackboneJS compatibility layer for the NestedTypes/Type-R",
"homepage": "https://github.com/Volicon/Backbone-Type-R",
"keywords": [
"backbonejs",
"type-r",
"nestedtypes",
"model",
"collection",
"serialization",
"validation",
"observable"
],
"repository": {
"type": "git",
"url": "https://github.com/Volicon/Backbone-Type-R.git"
},
"author": "Vlad Balin <https://github.com/gaperton>",
"contributors": [],
"peerDependencies": {
"jquery": "*",
"type-r": "^3.0.0",
"underscore": "*"
},
"dependencies": {
"tslib": "*"
},
"devDependencies": {
"@types/jquery": "^2.0.51",
"jquery": "*",
"type-r": "Volicon/Type-R",
"typescript": "^3.2.1",
"underscore": "*"
},
"files": [
"dist",
"lib",
"src",
"LICENSE"
],
"license": "MIT",
"scripts": {
"build": "yarn && npm run compile",
"compile": "node_modules/.bin/tsc"
}
}