-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.08 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
{
"name": "jex-block-parser",
"version": "1.0.0",
"main": "lib/index.js",
"description": "parse blocks of text based on indentation",
"keywords": [
"parse",
"block",
"parser",
"block parser",
"indentation",
"indent"
],
"scripts": {
"start": "./node_modules/@babel/node/bin/babel-node.js src/index.js",
"test": "jest src --config jest.config.js",
"lint": "eslint src",
"build": "babel src -d lib --ignore '**/*.test.js,__mocks__'",
"test-report": "yarn test --coverage",
"lint-report": "yarn lint --format json --output-file eslint-report.json",
"report": "yarn test-report && yarn lint-report && sonar-scanner",
"prepublishOnly": "yarn build"
},
"author": "Jeremy Greer <jex.grizzle@gmail.com>",
"license": "ISC",
"devDependencies": {
"@babel/cli": "7",
"@babel/core": "^7.0.0-0",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^10.0.2",
"eslint": "4.18.2",
"eslint-scope": "^5.0.0",
"jest": "^24.8.0"
}
}