UNPKG

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