-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.41 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
{
"name": "pg-orm",
"version": "1.0.0",
"description": "An ORM made specifically for Postgres",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"start": "set NODE_ENV=development&& nodemon --watch src/ --exec babel-node src",
"unitTest": "set NODE_ENV=development&& nodemon --watch . --exec \"mocha --bail --require babel-register --require babel-polyfill src/index.spec.js\"",
"build": "rollup -c",
"lintFix": "./node_modules/.bin/eslint --fix src/*/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bkapus2/query.git"
},
"author": "Brian Kapustka <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/bkapus2/query/issues"
},
"homepage": "https://github.com/bkapus2/query#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-entries": "^1.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"eslint": "^4.19.1",
"mocha": "^5.0.4",
"nodemon": "^1.17.1",
"pg": "^7.4.1",
"rollup-plugin-node-resolve": "^3.3.0",
"sinon": "^4.4.2",
"sinon-chai": "^3.0.0"
}
}