-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 3.97 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "reactivedb",
"version": "0.9.10",
"description": "Reactive ORM for Lovefield",
"main": "dist/cjs/index.js",
"module": "dist/es6/index.js",
"scripts": {
"build_all": "npm-run-all build_cjs build_module_es6 build_test",
"build_cjs": "npm-run-all clean_dist_cjs copy_src_cjs compile_cjs",
"build_module_es6": "npm-run-all clean_dist_es6 copy_src_es6 compile_module_es6",
"build_test": "rm -rf spec-js && tsc -p test/tsconfig.json",
"clean_dist_cjs": "rm -rf ./dist/cjs",
"clean_dist_es6": "rm -rf ./dist/es6",
"check_circular_dependencies": "madge ./dist/cjs --circular",
"compile_cjs": " tsc dist/cjs/src/index.ts dist/cjs/src/proxy/index.ts -m commonjs --outDir dist/cjs --sourcemap --target ES5 -d --diagnostics --pretty --strict --noImplicitReturns --noUnusedLocals --noUnusedParameters --suppressImplicitAnyIndexErrors --moduleResolution node --noEmitHelpers --importHelpers --lib es5,es2015.iterable,es2015.collection,es2015.promise,dom",
"compile_module_es6": "tsc dist/es6/src/index.ts dist/es6/src/proxy/index.ts -m ES2015 --outDir dist/es6 --sourcemap --target ES5 -d --diagnostics --pretty --strict --noImplicitReturns --noUnusedLocals --noUnusedParameters --suppressImplicitAnyIndexErrors --moduleResolution node --noEmitHelpers --importHelpers --lib es5,es2015.iterable,es2015.collection,es2015.promise,dom",
"copy_src_cjs": "mkdirp ./dist/cjs/src && shx cp -r ./src/* ./dist/cjs/src",
"copy_src_es6": "mkdirp ./dist/es6/src && shx cp -r ./src/* ./dist/es6/src",
"cover": "rm -rf ./.nyc_output ./coverage && NODE_ENV=test nyc --reporter=html --reporter=lcov --exclude=node_modules --exclude=spec-js/test --exclude=spec-js/src/storage/lovefield.js --exclude=spec-js/src/shared/Logger.js --exclude=spec-js/src/utils/option.js --exclude=spec-js/src/utils/valid.js tman --mocha spec-js/test/run.js",
"lint": "tslint -c tslint.json src/*.ts src/**/*.ts src/**/**/*.ts ./test/*.ts ./test/**/*.ts ./test/**/**/*.ts !./test/e2e/*.ts",
"start": "webpack-dev-server --inline --colors --progress --port 3000",
"start-demo": "webpack-dev-server --config ./example/webpack.config.js --inline --colors --progress --port 3001 --open",
"test": "npm run lint && NODE_ENV=test tman --mocha spec-js/test/run.js",
"version": "ts-node tools/version.ts && git add .",
"watch": "NODE_ENV=test ts-node ./tools/watch.ts & npm run watch_test",
"watch_cjs": "tsc src/index.ts -m commonjs --outDir dist --sourcemap --target ES5 -d --diagnostics --pretty --strict --noImplicitReturns --suppressImplicitAnyIndexErrors --moduleResolution node --noEmitHelpers --lib es5,es2015.iterable,es2015.collection,es2015.promise,dom -w",
"watch_test": "tsc -p test/tsconfig.json -w --diagnostics --pretty"
},
"keywords": [
"lovefield",
"RxJS"
],
"author": "lynweklm@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/node": "^7.0.18",
"@types/sinon": "^2.3.1",
"@types/sinon-chai": "^2.7.28",
"awesome-typescript-loader": "^3.1.3",
"chai": "^4.0.2",
"coveralls": "^2.13.1",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^2.1.2",
"happypack": "^3.0.3",
"html-webpack-plugin": "^2.28.0",
"madge": "^1.6.0",
"mkdirp": "^0.5.1",
"moment": "^2.18.1",
"node-watch": "^0.5.5",
"npm-run-all": "^4.0.2",
"nyc": "^11.0.2",
"raw-loader": "^0.5.1",
"rxjs": "^5.4.1",
"shx": "^0.2.2",
"sinon": "^2.3.5",
"sinon-chai": "^2.11.0",
"source-map-loader": "^0.2.1",
"style-loader": "^0.18.2",
"tman": "^1.6.9",
"ts-node": "^3.1.0",
"tslint": "^5.4.3",
"tslint-eslint-rules": "^4.1.1",
"tslint-loader": "^3.5.3",
"typescript": "^2.4.0",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"@types/lovefield": "^2.0.32",
"lovefield": "2.1.12",
"nesthydrationjs": "^1.0.2"
},
"peerDependencies": {
"rxjs": "^5.3.0",
"tslib": "^1.7.0"
},
"typings": "./index.d.ts"
}