UNPKG

2.4 kBJSONView Raw
1{
2 "name": "@viewstools/morph",
3 "version": "23.10.1",
4 "description": "Views language morpher",
5 "main": "bin.js",
6 "bin": {
7 "views-morph": "./bin.js"
8 },
9 "files": [
10 "bin.js",
11 "bin.js.map"
12 ],
13 "private": false,
14 "scripts": {
15 "prepare": "cross-env NODE_ENV=production rollup --config rollup.config.js && chmod +x bin.js",
16 "test": "jest",
17 "debug:dom": "npx nodemon -w bin.js -- bin.js issue/src --as react-dom --watch",
18 "debug:native": "npx nodemon -w bin.js -- bin.js issue/src --as react-native --watch",
19 "watch": "rollup --config rollup.config.js --watch"
20 },
21 "repository": {
22 "type": "git",
23 "url": "git+https://github.com/viewstools/morph.git"
24 },
25 "author": "Darío Javier Cravero <dario@uxtemple.com>",
26 "license": "BSD-3-Clause",
27 "bugs": {
28 "url": "https://github.com/viewstools/morph/issues"
29 },
30 "homepage": "https://github.com/viewstools/morph#readme",
31 "devDependencies": {
32 "@babel/core": "^7.3.4",
33 "@babel/preset-env": "^7.3.4",
34 "babel-eslint": "^10.0.1",
35 "babel-jest": "^24.3.1",
36 "cross-env": "^5.2.0",
37 "eslint": "^6.1.0",
38 "eslint-plugin-import": "^2.3.0",
39 "husky": "^3.0.2",
40 "jest": "^24.3.1",
41 "lint-staged": "^9.2.1",
42 "nodemon": "^2.0.2",
43 "prettier": "^2.0.5",
44 "rollup": "^1.6.0",
45 "rollup-plugin-babel": "^4.3.2",
46 "rollup-plugin-json": "^4.0.0"
47 },
48 "dependencies": {
49 "array-uniq": "^2.0.0",
50 "bubblesort": "^1.0.1",
51 "chalk": "^2.3.0",
52 "chokidar": "^3.0.2",
53 "color": "^3.0.0",
54 "core-js": "3",
55 "debounce": "^1.2.0",
56 "del": "^5.1.0",
57 "delete-empty": "^3.0.0",
58 "fast-glob": "^3.0.4",
59 "flatten": "^1.0.2",
60 "google-fonts-complete": "^1.1.1",
61 "has-yarn": "^2.1.0",
62 "latest-version": "^5.1.0",
63 "levenshtein": "^1.0.5",
64 "lodash.sortby": "^4.7.0",
65 "micromatch": "^4.0.2",
66 "minimist": "^1.2.0",
67 "react-query": "^0.3.24",
68 "read-pkg-up": "^6.0.0",
69 "source-map-support": "^0.5.12",
70 "to-camel-case": "^1.0.0",
71 "to-pascal-case": "^1.0.0",
72 "to-slug-case": "^1.0.0",
73 "trash": "^6.1.1",
74 "update-notifier": "^3.0.1"
75 },
76 "husky": {
77 "hooks": {
78 "pre-commit": "lint-staged"
79 }
80 },
81 "lint-staged": {
82 "*.js": [
83 "prettier --trailing-comma es5 --single-quote --no-semi --write",
84 "git add"
85 ]
86 },
87 "jest": {
88 "testEnvironment": "node"
89 }
90}