-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.72 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@bvasseur/guess_json_mapping_code",
"version": "0.1.0",
"description": "library to produce (javascript) code that map two JSON (source -> target).",
"main": "lib/index.js",
"scripts": {
"start": "node nodeApp",
"start-ui": "parcel packages/ui/index.html",
"start-ui:dist": "http-server dist/",
"build-ui": "rm -rf dist/ && parcel build packages/ui/index.html",
"build-ui:ghpages": "rm -rf dist/ && parcel build packages/ui/index.html --public-url ./",
"ghpages": "npm run build-ui:ghpages && rm -rf docs/ && cp -r dist/ docs/",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"lint": "eslint *.js",
"format": "prettier --write *.js",
"preversion": "npm run format && npm run lint && npm run test",
"mypublish": "git push && git push --tags && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Benoit-Vasseur/guess_json_mapping_code.git"
},
"files": [
"index.js"
],
"author": "Benoit Vasseur",
"license": "MIT",
"bugs": {
"url": "https://github.com/Benoit-Vasseur/guess_json_mapping_code/issues"
},
"homepage": "https://github.com/Benoit-Vasseur/guess_json_mapping_code#readme",
"browserslist": [
"last 1 Chrome version"
],
"devDependencies": {
"eslint": "^5.12.1",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"http-server": "^0.11.1",
"jest": "^24.0.0",
"parcel-bundler": "^1.11.0",
"prettier": "1.16.1"
}
}