-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 873 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 873 Bytes
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
{
"name": "@owe/helpers",
"version": "0.13.0",
"description": "A collection of helpers used by the owe.js ecosystem.",
"keywords": [
"owe",
"owe.js",
"helpers",
"tools"
],
"license": "LGPL-3.0",
"author": {
"name": "Clemens Damke",
"email": "clemens@cortys.de",
"url": "http://www.cortys.de"
},
"repository": {
"type": "git",
"url": "https://github.com/owejs/helpers.git"
},
"engines": {
"node": ">=6.0"
},
"main": "src/index.js",
"devDependencies": {
"eslint": "4.18.2",
"eslint-config-cortys": "1.x",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"gulp": "3.9.1",
"gulp-eslint": "4.0.2",
"gulp-istanbul": "1.1.2",
"gulp-mocha": "4.3.1",
"mocha": "5.0.3",
"run-sequence": "2.2.1",
"coveralls": "3.0.0"
},
"scripts": {
"test": "./node_modules/.bin/gulp test",
"prepublish": "./node_modules/.bin/gulp test"
}
}