-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 929 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": "bravent",
"version": "0.1.0",
"description": "Functional Event Sourcing",
"main": "dist/bravent.js",
"author": "vvgomes",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/vvgomes/bravent.git"
},
"dependencies": {
"ramda": "^0.19.1",
"data.maybe": "1.2.0",
"data.validation": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^6.1.2",
"babel-plugin-istanbul": "^2.0.1",
"babel-preset-es2015": "^6.6.0",
"eslint": "^3.5.0",
"eslint-config-defaults": "^9.0.0",
"mocha": "^2.4.5",
"nyc": "^8.1.0",
"sinon": "^1.17.5"
},
"scripts": {
"lint": "eslint {lib,test}/**/*",
"test": "nyc mocha --compilers js:babel-register --recursive",
"quality": "npm test && npm run lint",
"dist": "babel lib/ --out-dir dist/",
"prepublish": "npm test && npm run lint && npm run dist"
}
}