-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "opentmi-addon",
"version": "0.2.0",
"description": "OpenTMI addon base classes",
"scripts": {
"test": "make test",
"coverage": "make coverage",
"lint": "make lint",
"lint-fix": "make lint-fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opentmi/opentmi-addon.git"
},
"author": "Jussi Vatjus-Anttila <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/opentmi/opentmi-addon/issues"
},
"homepage": "https://github.com/opentmi/opentmi-addon#readme",
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.8",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"mocha-junit-reporter": "^1.17.0",
"mocha-circleci-reporter": "0.0.3",
"sinon": "^4.2.2"
},
"dependencies": {
"bluebird": "^3.5.1",
"invariant": "^2.2.4",
"lodash": "^4.17.4",
"uuid": "^3.4.0"
}
}