This repository was archived by the owner on Apr 12, 2021. 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
102 lines (102 loc) · 2.94 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.94 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "base_crud_lib",
"version": "0.0.1",
"description": "fiware base crud es6 lib",
"main": "./lib/index.js",
"scripts": {
"clean": "rimraf lib",
"test": "npm run lint && npm run cover",
"test:prod": "cross-env BABEL_ENV=production npm run test",
"test:only": "mocha --require babel-core/register --require babel-polyfill --recursive",
"test:watch": "npm test -- --watch",
"cover": "nyc --check-coverage npm run test:only",
"lint": "eslint src test",
"build": "cross-env BABEL_ENV=production babel src --out-dir lib",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build",
"precommit": "lint-staged",
"prettier": "prettier --parser flow --single-quote --write **/**/*.js **/*.js *.js",
"prettier:text": "prettier '*.md' --tab-width 4 --print-width 120 --write --prose-wrap always",
"lint:md": "remark -f '*.md'",
"lint:text": "textlint '*.md'"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FIWARE-Blockchain/Base_CRUD.git"
},
"keywords": [
"npm",
"node",
"javascript",
"fiware"
],
"author": "Har Preet Singh <harpreet.singh@fiware.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FIWARE-Blockchain/Base_CRUD/issues"
},
"homepage": "https://github.com/FIWARE-Blockchain/Base_CRUD#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.5.0",
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"mocha": "^6.1.3",
"nyc": "^14.1.1",
"rimraf": "^2.6.2",
"eslint-config-tamia": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^1.1.0",
"lint-staged": "^7.3.0",
"memfs": "2.10.1",
"prettier": "^1.18.2",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.3",
"textlint": "^11.3.1",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-no-dead-link": "^4.6.1",
"textlint-rule-terminology": "^1.1.29",
"textlint-rule-write-good": "^1.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.md": [
"prettier --tab-width 4 --print-width 120 --write --prose-wrap always",
"git add"
],
"*.js": [
"prettier --parser flow --single-quote --trailing-comma es5 --write",
"eslint --fix",
"git add"
]
},
"remarkConfig": {
"settings": {
"bullet": "-",
"paddedTable": true
},
"plugins": [
"remark-preset-lint-recommended"
]
},
"dependencies": {
"lodash": "^4.17.20"
}
}