-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.82 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.82 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "jsorm",
"description": "Javascript ORM",
"main": "lib/index.js",
"module": "lib-esm/index.js",
"types": "lib-esm/index.d.ts",
"author": "Lee Richmond<richmolj@gmail.com> & Wade Tandy<wade.tandy@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/jsonapi-suite/jsorm",
"scripts": {
"clean": "rimraf ./dist ./build ./coverage ./lib ./lib-esm",
"prebuild": "yarn run clean && yarn test",
"build": "npm-run-all build:node build:es6 build:copy_shims build:umd build:umd:min",
"build:node": "yarn run tsc -p ./tsconfig.node.json",
"build:es6": "yarn run tsc -p ./tsconfig.lib.json",
"build:umd": "yarn run rollup -c",
"build:umd:min": "NODE_ENV=production yarn build:umd",
"build:watch": "NODE_ENV=watch yarn build:es6 --watch",
"build:copy_shims": "cp esm-shims/* lib-esm/util/",
"build:coverage": "yarn prebuild && yarn run tsc -p .",
"coverage": "yarn build:coverage && node --harmony ./node_modules/istanbul/lib/cli.js cover --root ./build/src --report lcov --report text ./node_modules/mocha/bin/_mocha ./build/test/**/*.test.js",
"test": "NODE_ENV=test mocha --opts test/mocha.opts",
"test:watch": "yarn run test --watch",
"lint": "yarn lint:tslint",
"lint:tslint": "tslint -p .",
"lint:prettier": "prettier \"{src,test}/**/*.{ts,js}\" --list-different",
"update:dependencies": "ncu -u",
"prettier": "pretty-quick --staged"
},
"prettier": {
"semi": false
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "^7.1.0",
"@types/chai-things": "^0.0.32",
"@types/debug": "0.0.30",
"@types/fetch-mock": "5.12.2",
"@types/inflected": "1.1.29",
"@types/lodash": "4.14.92",
"@types/lodash-es": "4.17.0",
"@types/lodash.clonedeep": "4.5.3",
"@types/lodash.snakecase": "^4.1.3",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.58",
"@types/sinon": "^4.1.2",
"@types/sinon-chai": "^2.7.29",
"@types/winston": "2.3.7",
"chai": "^4.1.2",
"chai-things": "^0.2.0",
"es6-promise": "4.2.4",
"fetch-mock": "^5.10.0",
"husky": "0.14.3",
"isomorphic-fetch": "^2.2.1",
"istanbul": "0.4.5",
"mocha": "^4.0.1",
"npm-check-updates": "^2.13.0",
"npm-run-all": "4.1.2",
"prettier": "1.10.1",
"pretty-quick": "1.2.0",
"rimraf": "2.6.2",
"rollup": "0.52.1",
"rollup-plugin-commonjs": "8.2.6",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-uglify": "2.0.1",
"sinon": "^4.0.2",
"sinon-chai": "2.14.0",
"ts-node": "4.0.1",
"tslint": "5.9.0",
"tslint-config-prettier": "1.6.0",
"typescript": "2.8.3",
"winston": "^2.3.1"
},
"dependencies": {
"debug": "^4.0.0",
"eventbusjs": "^0.2.0",
"inflected": "^2.0.3",
"lodash": "^4.17.10",
"lodash-es": "^4.17.4",
"tslib": "^1.8.1"
}
}