-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.96 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"author": "squaremarco",
"main": "dist/lib/index.js",
"dependencies": {
"jest-extended": "^0.11.2",
"ramda": "^0.26.1",
"ramda-adjunct": "^2.20.0",
"ramda-extension": "^0.10.0",
"rxjs": "^6.5.3",
"uuid": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-eslint": "^10.0.3",
"cross-env": "^6.0.0",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-import-resolver-jest": "^3.0.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-ramda": "^2.5.1",
"jest": "^24.9.0",
"jest-chain": "^1.1.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"serve": "^11.2.0"
},
"keywords": [
"json",
"dot notation",
"ramda"
],
"license": "MIT",
"name": "@iamsquare/dotfy",
"description": "A simple utility that transforms JSON objects to their dot notation counterpart and viceversa.",
"private": false,
"scripts": {
"setup": "npm i",
"clean": "npm-run-all -p clean:*",
"clean:dist": "rimraf ./dist",
"clean:coverage": "rimraf ./coverage",
"serve": "serve -n",
"serve:coverage": "npm run serve coverage/lcov-report",
"test": "jest --passWithNoTests",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"test:update": "npm run test -- -u",
"build": "npm-run-all -s clean:dist build:compile",
"build:compile": "babel src --out-dir dist/lib",
"prod": "npm-run-all clean test:coverage build",
"dev": "test:watch"
},
"version": "0.0.1"
}