forked from VoliJS/NestedTypes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
56
57
{
"name": "nestedtypes",
"version": "2.0.2",
"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.41",
"chai": "* <3",
"chai-as-promised": "^5.3.0",
"jquery": "*",
"mocha": "*",
"requirejs": "*",
"sinon": "*",
"sinon-chai": "*",
"source-map-loader": "^0.1.5",
"ts-loader": "*",
"typescript": "<2.4.0",
"underscore": "*",
"webpack": "*"
},
"files": [
"dist",
"lib",
"src",
"LICENSE"
],
"license": "MIT",
"scripts": {
"test": "node_modules/.bin/mocha",
"build": "npm run pull && npm run compile",
"pull": "git submodule update --remote && cp -R ./submodules/Type-R/src/* ./src/type-r",
"compile": "node_modules/.bin/tsc && ./node_modules/.bin/webpack -p",
"deploy": "cp ./dist/* ../observer-frontend/htdocs/js/lib/nested",
"all": "npm run pull && npm run build && npm run deploy"
}
}