forked from VoliJS/NestedTypes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.64 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
{
"name": "nestedtypes",
"version": "2.1.4",
"main": "./dist/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"description": "BackboneJS compatibility layer for the Type-R",
"homepage": "https://github.com/Volicon/NestedTypes",
"keywords": [
"backbonejs",
"relations",
"nested",
"model",
"collection",
"properties"
],
"repository": {
"type": "git",
"url": "https://github.com/Volicon/NestedTypes.git"
},
"author": "Vlad Balin <https://github.com/gaperton>",
"contributors": [],
"peerDependencies": {
"jquery": "*",
"underscore": "*"
},
"devDependencies": {
"@types/jquery": "^2.0.49",
"jquery": "^3.3.1",
"rollup": "*",
"rollup-plugin-node-resolve": "*",
"rollup-plugin-sourcemaps": "*",
"rollup-plugin-uglify": "*",
"typescript": "^3.0.1",
"underscore": "*"
},
"files": [
"dist",
"lib",
"src",
"LICENSE"
],
"license": "MIT",
"scripts": {
"build": "npm run pull && npm run compile && npm run build:endpoints",
"pull": "git submodule update --remote && cp -R ./submodules/Type-R/src/* ./src/type-r && cp -R ./submodules/Type-R/endpoints/* ./endpoints",
"compile": "node_modules/.bin/tsc && ./node_modules/.bin/rollup --config",
"deploy": "cp ./dist/* ../observer-frontend/htdocs/js/lib/nested",
"build:endpoints": "cd endpoints/attributes && npm run build && cd ../localStorage && npm run build && cd ../memory && npm run build && cd ../restful && npm run build && cd ../proxy && npm run build",
"all": "npm run pull && npm run build && npm run deploy"
},
"dependencies": {
"tslib": "^1.9.3"
}
}