-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "flatulence",
"version": "0.2.13",
"description": "Flatten objects and arrays so that each key is the full path to a primitive value. Paths are lodash-compatible. Inflate flattened objects and make them regular JS objects again.",
"main": "lib/main.js",
"scripts": {
"build": "webpack -p --out-dir lib",
"watch": "webpack -p --watch --out-dir lib",
"test": "mocha test",
"test:build": "npm run build && npm run test"
},
"maintainers": [
{
"name": "Kolja Kirchner",
"email": "[email protected]"
}
],
"keywords": [
"utility",
"flatten",
"unflatten",
"js",
"paths"
],
"author": "Kolja Kirchner",
"license": "ISC",
"devDependencies": {
"assert": "^1.4.1",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.22.0",
"lodash": "^4.16.6",
"mocha": "^3.1.2",
"webpack": "^1.13.3"
},
"homepage": "https://github.com/mephju/flatulence",
"repository": {
"type": "git",
"url": "[email protected]:mephju/flatulence.git"
}
}