-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 934 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
{
"name": "object-dsl",
"version": "0.3.0",
"description": "µ functional library to transverse objects using a extendable DSL-like syntax",
"author": "@diffcunha",
"license": "ISC",
"main": "lib/index.js",
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/diffcunha/object-dsl.git"
},
"scripts": {
"prebuild": "rm -rf ./lib",
"build": "babel ./src --out-dir ./lib",
"lint": "eslint .",
"prepublish": "npm run build"
},
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-node6": "^11.0.0",
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1"
}
}