-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.9 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "your-project-name",
"version": "1.0.0",
"displayName": "YOUR PROJECT DISPLAY NAME",
"description": "Starter project for serverless nodejs services. Please edit this package.json file and change it accordingly to your needs.",
"main": "index.js",
"scripts": {
"ci": "ENV=ci eslint . && ENV=ci istanbul cover --root src/ jasmine JASMINE_CONFIG_PATH=spec/support/jasmine.all.json",
"cover": "ENV=test istanbul cover --root src/ jasmine JASMINE_CONFIG_PATH=spec/support/jasmine.all.json",
"cover-unit": "ENV=test istanbul cover --root src/ jasmine",
"lint": "ENV=test eslint .",
"test": "ENV=test jasmine",
"test-functional": "ENV=test jasmine JASMINE_CONFIG_PATH=spec/support/jasmine.functional.json",
"test-integration": "ENV=test jasmine JASMINE_CONFIG_PATH=spec/support/jasmine.integration.json",
"test-all": "ENV=test jasmine JASMINE_CONFIG_PATH=spec/support/jasmine.all.json",
"sls": "sls"
},
"homepage": "https://your/project/homepage",
"repository": {
"type": "git",
"url": "https://your/project/repo.git"
},
"bugs": {
"url": "https://url/to/issue/tracking/system"
},
"keywords": [
"YOUR KEYWORDS",
"nodejs",
"services"
],
"contributors": [
{
"name": "Contributor 01 Name",
"email": "contributor01@email",
"url": "http://contributor/personal/page"
}
],
"license": "Apache-2.0",
"dependencies": {
"ajv": "^6.2.1",
"ajv-keywords": "^3.1.0",
"bluebird": "^3.5.1",
"intravenous": "^0.1.4-beta",
"locale": "^0.1.0",
"lodash": "^4.17.5",
"nconf": "^0.10.0",
"node-uuid": "^1.4.8",
"winston": "^2.4.0"
},
"devDependencies": {
"eslint": "^4.18.2",
"istanbul": "^0.4.5",
"jasmine": "^3.1.0",
"jasmine-core": "^3.1.0",
"jasmine-expect": "^3.8.3",
"jasmine-promises": "^0.4.1",
"jasmine-spec-reporter": "^4.2.1",
"serverless": "^1.26.1"
}
}