This repository was archived by the owner on Sep 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.51 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.51 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
45
46
47
48
49
50
51
{
"name": "flexio-json-parser",
"jest": {
"verbose": true,
"globals": {
"__ASSERT__": true
},
"testMatch": [
"<rootDir>/__tests__/**/?(*.)+(test).js"
],
"testEnvironment": "jsdom"
},
"version": "1.0.0",
"description": "Helper for parse Json",
"main": "index.js",
"module": "index.js",
"repository": "git@github.com:flexiooss/flexio-json-parser.git",
"author": "Thomas Chatelain (https://github.com/TomAchT)",
"license": "Apache-2.0",
"scripts": {
"doc": "yarn jsdoc -d ./docs/ -r ./src/ ",
"test": "jest",
"test:output": "jest --clearCache --json --outputFile=__tests__/results.json"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.0.3",
"babel-jest": "^23.4.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-jest": "^23.2.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^5.2.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^23.5.0",
"jsdoc": "^3.5.5",
"regenerator-runtime": "^0.12.0"
},
"dependencies": {
"flexio-jshelpers": "https://github.com/flexiooss/flexio-jshelpers.git"
}
}