-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.45 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
{
"name": "@creately/rxdata",
"version": "5.1.4",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rimraf coverage dist",
"build": "tsc && npm run build:mock",
"build:mock": "tsc --p tsconfig.spec.json",
"lint": "prettier --print-width 120 --single-quote --trailing-comma es5 --write \"src/**/*.ts\"",
"test": "karma start karma.conf.js --single-run",
"test:watch": "karma start karma.conf.js",
"test:cover": "npm run test && open coverage/index.html",
"prepublish": "npm run clean && npm run lint && npm run build"
},
"keywords": [
"rxjs",
"mongo",
"database"
],
"author": "Muhammed Thanish <[email protected]> (http://thanish.me/)",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^3.3.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.3.0",
"karma": "^3.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-jasmine": "^2.0.1",
"karma-webpack": "^3.0.5",
"prettier": "^1.15.2",
"rimraf": "^2.6.2",
"ts-loader": "^5.3.1",
"typescript": "^3.1.6",
"webpack": "^4.26.1"
},
"dependencies": {
"@creately/lschannel": "^2.0.3",
"@creately/mungo": "^1.2.1",
"localforage": "^1.7.3",
"localforage-setitems": "^1.4.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"mingo": "^2.2.6",
"rxjs": "^6.0.0"
}
}