-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 965 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
35
36
37
38
39
40
41
42
43
44
{
"name": "omos",
"version": "0.8.2",
"description": "Object mapper on steroid",
"main": "./lib/transformWith.js",
"scripts": {
"test": "jest",
"lint": "eslint .",
"prepublish": "npm run build",
"build": "babel src --out-dir lib",
"sample": "babel-node ./sample"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dong-do/omos.git"
},
"keywords": [
"Object",
"Mapper",
"Steroid"
],
"author": "Dong Do",
"license": "ISC",
"bugs": {
"url": "https://github.com/dong-do/omos/issues"
},
"homepage": "https://github.com/dong-do/omos#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"eslint": "^3.17.1",
"jest": "^19.0.2",
"mocha": "^3.2.0"
},
"jest": {
"collectCoverage": true
},
"dependencies": {
"deepmerge": "^1.3.2"
}
}