-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.21 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.21 KB
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
{
"name": "@sensorfactdev/draconarius",
"version": "1.1.3",
"description": "Manage (feature)flags like a Roman soldier\"",
"main": "./lib/index.js",
"repository": "https://github.com/Sensorfactdev/draconarius",
"author": "Ramon Gebben <ramon@sensorfact.nl>",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest --coverage",
"docs": "jsdoc2md ./src/index.js > API.md",
"prepublish": "yarn test; yarn docs;",
"test-travis": "yarn test && cat ./coverage/lcov.info | coveralls",
"build": "babel ./src --out-dir ./lib --presets @babel/preset-env"
},
"jest": {
"collectCoverageFrom": [
"lib/**/*.js"
],
"reporters": [
"default",
"jest-junit"
]
},
"jest-junit": {
"suiteName": "Draconarius",
"output": "./reports/junit.xml"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"jest": "^23.1.0",
"jest-junit": "^5.0.0",
"jsdoc-to-markdown": "^4.0.1"
}
}