-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "dafit",
"version": "2.0.0",
"description": "Transform data to fit your structures",
"main": "dist/index.js",
"repository": "[email protected]:Kilix/dafit.git",
"author": "Alexandre BODIN <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-jest": "19.0.0",
"babel-preset-env": "1.3.2",
"codecov": "2.1.0",
"eslint": "3.19.0",
"jest": "19.0.2",
"npm-run-all": "4.0.2",
"prettier": "0.22.0",
"rimraf": "2.6.1",
"rollup": "0.41.6"
},
"scripts": {
"build": "run-s clean:* build:*",
"build:dist": "rollup -c",
"clean:dist": "rimraf dist",
"lint": "eslint \"{__tests__,src}/**/*.js\"",
"format": "prettier --single-quote --trailing-comma es5 --color --write \"{__tests__,src}/**/*.js\"",
"testonly": "jest && codecov",
"test": "run-s format lint testonly",
"prepublish": "run-s build",
"link": "npm run build && npm link"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.js"
],
"collectCoverage": true
},
"keywords": [
"data",
"transform",
"object",
"immutable",
"asynchronous",
"structure",
"mapping",
"evolve",
"modify",
"format"
]
}