-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 913 Bytes
/
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
{
"name": "@vfk_research/travis_sandbox_nodejs",
"version": "1.0.1",
"description": "Test git workflow for nodejs projects using github and travis",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "node index.js",
"test": "npm run lint && npm run test:unit",
"test:unit": "mocha test/test.js",
"lint": "eslint --ignore-path .gitignore ."
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^5.12.1",
"eslint-config-strongloop": "^2.1.0",
"mocha": "^5.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipamaas/travis_sandbox_nodejs.git"
},
"keywords": [
"test"
],
"author": "Matthias Stoehr",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ipamaas/travis_sandbox_nodejs/issues"
},
"homepage": "https://github.com/ipamaas/travis_sandbox_nodejs#readme"
}