-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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": "object-decomposer",
"version": "1.0.4",
"description": "Normalize an array or hierarchical data into an array or key value pair object",
"main": "dist/main.js",
"scripts": {
"build": "precompile && mv dist/index.compiled.for.0.10.js dist/main.js",
"lint": "./node_modules/.bin/eslint src/",
"test": "mocha --compilers js:babel-core/register test test/**/*.test.js --reporter list",
"report-coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register test test/**/*.test.js --report lcovonly -- -R spec && codecov"
},
"config": {
"pre-compiled": {
"dir": "dist",
"files": [
"src/index.js"
],
"node": [
"0.10"
]
}
},
"files": [
"dist"
],
"author": "Michael E. Chancey Jr.",
"license": "ISC",
"devDependencies": {
"chai": "^4.1.2",
"codecov": "^2.3.0",
"eslint": "^4.7.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"pre-compiled": "^1.4.0",
"babel": "6.3.13",
"babel-core": "6.1.18",
"babel-preset-es2015": "6.3.13"
},
"repository": {
"type": "git",
"url": "https://github.com/cyb3rsyph0n/object-decomposer.git"
},
"keywords": [
"hierarchy",
"decompose",
"map array to object",
"flatten hierarchy",
"flatten",
"normalize",
"map hierarchy to flat object"
],
"dependencies": {
"pick-precompiled": "^1.0.2"
}
}