-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 982 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
{
"name": "traph",
"version": "0.4.0",
"description": "Transformation graph for JS Objects, a powerful and declarative way to remap one Object in another.",
"repository": "git@github.com:caesarsol/traph.git",
"author": "caesarsol <smilemachine@gmail.com>",
"license": "MIT",
"scripts": {
"build": "babel index.js -d dist/",
"lint": "eslint index.js",
"test:watch": "ava --watch",
"test": "npm run lint && ava",
"prepublish": "npm run build && npm test"
},
"main": "dist/index.js",
"files": [
"dist"
],
"ava": {
"require": [
"babel-register"
],
"presets": "inherit"
},
"devDependencies": {
"ava": "^0.18.1",
"babel": "^6.5.2",
"babel-cli": "^6.22.2",
"babel-preset-latest": "^6.22.0",
"eslint": "^3.15.0",
"eslint-config-standard": "7.0.0-beta.0",
"eslint-plugin-ava": "^4.1.0",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^2.0.1"
},
"dependencies": {}
}