-
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.12 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.12 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": "package",
"version": "0.0.1",
"description": "Package Price Selector",
"readme": "README.md",
"main": "server.coffee",
"repository": {
"type": "git",
"url": "github.com/CleristonBernardes/package.git"
},
"keywords": [
"package",
"price",
"value"
],
"scripts": {
"start": "coffee server.coffee",
"test": "jest"
},
"jest":{
"moduleFileExtensions": [
"js",
"json",
"jsx",
"node",
"coffee"
],
"transformIgnorePatterns": [ ],
"transform": {".*": "<rootDir>/__test__/preprocessor.js"}
},
"engines": {
"node": "4.6.1",
"npm": "4.6.1"
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"author": "cleristonbernardes@gmail.com",
"license": "ISC",
"homepage": "https://github.com/cleristonbernardes/package",
"dependencies": {
"async": "^2.0.0-rc.6",
"body-parser": "^1.13.3",
"coffee-script": "^1.10.0",
"config": "^1.21.0",
"express": "^4.13.3",
"js-yaml": "^3.6.1",
"moment": "^2.10.6",
"node-cache": "^4.1.1",
"request": "^2.81.0",
"underscore": "^1.8.3"
}
}