This repository was archived by the owner on Jul 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.47 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
{
"name": "@warp-works/core",
"version": "1.0.0-rc4",
"description": "Core library for WarpWorks",
"main": "lib/index.js",
"scripts": {
"coverage": "nyc npm run -s test",
"lint:node": "eslint --fix --ignore-pattern='*.test.js' \"lib/**/*.js\"",
"lint:test": "eslint --fix --config='.eslintrc.test.json' \"lib/**/*.test.js\"",
"lint": "npm run -s lint:node && npm run -s lint:test",
"test": "mocha 'lib/**/*.unit.test.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WarpWorks/core.git"
},
"keywords": [
"WarpWorks"
],
"author": {
"name": "Dirk Slama",
"email": "dirk.slama@gmx.de"
},
"contributors": [
{
"name": "Hữu Ðà Trần",
"email": "huuda.tran@quoininc.com",
"url": "https://www.quoininc.com/staff/huu-da-tran/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/WarpWorks/core/issues"
},
"homepage": "https://github.com/WarpWorks/core#readme",
"devDependencies": {
"@quoin/eslint-config-quoin": "0.1.4",
"@quoin/node-test-helpers": "0.2.1",
"eslint": "3.19.0",
"eslint-plugin-html": "2.0.3",
"eslint-plugin-import": "2.3.0",
"eslint-plugin-node": "5.0.0",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"mocha": "3.4.2",
"nyc": "11.0.2"
},
"dependencies": {
"@quoin/node-rc": "0.1.1",
"bluebird": "3.5.0",
"debug": "2.6.8",
"lodash": "4.17.4",
"mongodb": "2.2.28"
}
}