This repository was archived by the owner on Jul 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 KB
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
{
"name": "@cascade/pagination",
"version": "0.0.0",
"description": "Array and Service Pagination powered by Cascade.",
"repository": "https://www.github.com/sjohnsonaz/cascade-datasource.git",
"license": "MIT",
"author": "Sean Johnson <sjohnson@sjohnsonaz.com>",
"main": "dist/scripts/DataSource.js",
"typings": "dist/scripts/DataSource.d.ts",
"scripts": {
"start": "node src/mocha/NodeRunner.js",
"install": "",
"build": "tsc",
"prepublishOnly": "tsc --declaration",
"test": "tsc && node src/mocha/NodeRunner.js",
"min": "webpack --config webpack.config.js --progress",
"dev": "webpack --config webpack.dev.config.js --progress",
"watch": "webpack --config webpack.dev.config.js --watch --progress"
},
"peerDependencies": {
"cascade": "^0.7.9"
},
"devDependencies": {
"@types/chai": "4.0.1",
"@types/mocha": "2.2.41",
"cascade": "^0.7.9",
"chai": "4.0.2",
"core-js": "2.4.1",
"jsdom": "11.1.0",
"mocha": "3.4.2",
"nodemon": "1.11.0",
"ts-loader": "2.2.2",
"typescript": "3.8.3",
"webpack": "3.0.0"
},
"keywords": [
"datasource",
"pagination",
"array",
"service",
"cascade",
"observablearray",
"reactive",
"model",
"mvvm"
]
}