-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.13 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.13 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "ormojo-materializer",
"version": "0.0.1",
"description": "Provides an ormojo backend operating on materialized views backed by a local cache.",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"keywords": [
"orm",
"materialized",
"view"
],
"repository": {
"type": "git",
"url": "https://github.com/ormojo/ormojo-materializer.git"
},
"author": "William C. Johnson <wcjohnson@oigroup.net> (https://github.com/wcjohnson)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ormojo/ormojo-materializer/issues"
},
"homepage": "https://github.com/ormojo/ormojo-materializer",
"scripts": {
"clean": "rimraf lib build es coverage",
"build": "npm run build:coffee && npm run build:babel:commonjs && npm run build:babel:es",
"build:babel:commonjs": "cross-env BABEL_ENV=commonjs babel build --out-dir lib",
"build:babel:es": "cross-env BABEL_ENV=es babel build --out-dir es",
"build:coffee": "mkdir -p build && coffee -o build src/*.coffee",
"doc:build": "node_modules/.bin/codo src/",
"prepublish": "npm run clean && npm run build",
"test": "node_modules/.bin/mocha --recursive --compilers coffee:coffee-script/register",
"coverage:build": "node_modules/.bin/mocha --recursive --compilers coffee:coffee-script/register --require coffee-coverage/register-istanbul",
"coverage:report": "node_modules/.bin/istanbul report",
"coverage": "npm run coverage:build && npm run coverage:report",
"precommit": "npm run prepublish && npm run test",
"postcheckout": "npm install",
"postmerge": "npm install"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"chai": "^3.5.0",
"codo": "^2.1.2",
"coffee-coverage": "^1.0.1",
"coffee-script": "^1.11.1",
"core-js": "^2.4.1",
"cross-env": "^3.1.3",
"fetch-ponyfill": "^3.0.2",
"husky": "^0.11.9",
"istanbul": "^0.4.5",
"mocha": "^2.4.5",
"rimraf": "^2.5.4"
},
"dependencies": {
"any-observable": "^0.2.0",
"symbol-observable": "^1.0.4"
},
"peerDependencies": {}
}