-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 928 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 928 Bytes
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
{
"name": "xform",
"version": "1.2.0",
"description": "Transform objects from one structure to another",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run test && npm run build",
"test": "xo && ava",
"build": "babel lib -d dist -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dvdln/xform.git"
},
"author": "David Lane <me@dvdln.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/dvdln/xform/issues"
},
"homepage": "https://github.com/dvdln/xform#readme",
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-register": "^6.14.0",
"xo": "^0.16.0"
},
"dependencies": {
"babel": "^6.5.2",
"jsonpath": "^0.2.7"
},
"xo": {
"space": true
},
"ava": {
"require": "babel-register"
},
"babel": {
"presets": [
"es2015"
]
}
}