|
1 | 1 | { |
2 | | - "name": "chooser", |
3 | | - "version": "1.0.0", |
4 | | - "private": false, |
5 | | - "description": "The new and improved Creative Commons License Chooser", |
6 | | - "author": "akmadian <akmadian@gmail.com>", |
7 | | - "scripts": { |
8 | | - "serve": "vue-cli-service serve", |
9 | | - "build": "vue-cli-service build && shx rm -rf ./docs && shx cp -r ./dist ./docs", |
10 | | - "test:unit": "vue-cli-service test:unit", |
11 | | - "test:e2e": "vue-cli-service test:e2e", |
12 | | - "lint": "vue-cli-service lint && npx stylelint ./src/**/*.{vue,css} --fix", |
13 | | - "i18n:report": "vue-cli-service i18n:report -v --src src/**/*.vue --locales src/locales/**.json -o output.json", |
14 | | - "test": "vue-cli-service test:unit --coverage && vue-cli-service test:e2e && npm run test:cypress", |
15 | | - "test:cypress": "node_modules/.bin/cypress open" |
16 | | - }, |
17 | | - "dependencies": { |
18 | | - "@creativecommons/vocabulary": "^2020.11.3", |
19 | | - "@creativecommons/vue-vocabulary": "^2020.11.3", |
20 | | - "@sentry/vue": "^5.29.2", |
21 | | - "bulma": "^0.9.1", |
22 | | - "clipboard": "^2.0.6", |
23 | | - "core-js": "^3.6.5", |
24 | | - "node-sass": "^4.14.1", |
25 | | - "sass-loader": "^8.0.2", |
26 | | - "vue": "^2.6.10", |
27 | | - "vue-analytics": "^5.22.1", |
28 | | - "vue-hotjar": "^1.2.0", |
29 | | - "vue-i18n": "^8.20.0", |
30 | | - "vue-scrollto": "^2.20.0", |
31 | | - "vuex": "^3.5.1" |
32 | | - }, |
33 | | - "devDependencies": { |
34 | | - "@fullhuman/postcss-purgecss": "^3.1.3", |
35 | | - "@vue/cli-plugin-babel": "^4.4.6", |
36 | | - "@vue/cli-plugin-e2e-nightwatch": "^4.4.6", |
37 | | - "@vue/cli-plugin-eslint": "~4.5.0", |
38 | | - "@vue/cli-plugin-unit-jest": "^4.4.6", |
39 | | - "@vue/cli-service": "^4.4.6", |
40 | | - "@vue/eslint-config-standard": "^5.1.2", |
41 | | - "@vue/test-utils": "^1.1.2", |
42 | | - "babel-eslint": "^10.1.0", |
43 | | - "chromedriver": "^87.0.0", |
44 | | - "clipboardy": "^2.3.0", |
45 | | - "cypress": "^6.3.0", |
46 | | - "eslint": "^6.8.0", |
47 | | - "eslint-config-prettier": "^7.2.0", |
48 | | - "eslint-plugin-import": "^2.22.0", |
49 | | - "eslint-plugin-node": "^11.1.0", |
50 | | - "eslint-plugin-prettier": "^3.3.1", |
51 | | - "eslint-plugin-promise": "^4.2.1", |
52 | | - "eslint-plugin-standard": "^4.0.1", |
53 | | - "eslint-plugin-vue": "^6.2.2", |
54 | | - "geckodriver": "^1.19.1", |
55 | | - "lint-staged": "^9.5.0", |
56 | | - "prettier": "^1.19.1", |
57 | | - "shx": "^0.3.3", |
58 | | - "stylelint": "^13.10.0", |
59 | | - "stylelint-config-prettier": "^8.0.2", |
60 | | - "stylelint-config-standard": "^20.0.0", |
61 | | - "vue-cli-plugin-i18n": "^0.6.1", |
62 | | - "vue-template-compiler": "^2.6.10" |
63 | | - }, |
64 | | - "jest": { |
65 | | - "moduleFileExtensions": [ |
66 | | - "js", |
67 | | - "vue" |
68 | | - ], |
69 | | - "moduleNameMapper": { |
70 | | - "^@/(.*)$": "<rootDir>/src/$1" |
| 2 | + "name": "chooser", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "The new and improved Creative Commons License Chooser", |
| 5 | + "author": "akmadian <akmadian@gmail.com>", |
| 6 | + "private": false, |
| 7 | + "repository": { |
| 8 | + "type": "git", |
| 9 | + "url": "git+https://github.com/creativecommons/chooser.git" |
71 | 10 | }, |
72 | | - "transform": { |
73 | | - "^.+\\.js$": "<rootDir>/node_modules/babel-jest", |
74 | | - ".*\\.(vue)$": "<rootDir>/node_modules/vue-jest", |
75 | | - "^.+\\.(svg|png)$": "<rootDir>/tests/unit/svgTransform.js" |
| 11 | + "license": "MIT", |
| 12 | + "scripts": { |
| 13 | + "serve": "vue-cli-service serve", |
| 14 | + "build": "vue-cli-service build && shx rm -rf ./docs && shx cp -r ./dist ./docs", |
| 15 | + "test:unit": "vue-cli-service test:unit", |
| 16 | + "test:e2e": "vue-cli-service test:e2e", |
| 17 | + "lint": "vue-cli-service lint && npx stylelint ./src/**/*.{vue,css} --fix", |
| 18 | + "i18n:report": "vue-cli-service i18n:report -v --src src/**/*.vue --locales src/locales/**.json -o output.json", |
| 19 | + "test": "vue-cli-service test:unit --coverage && vue-cli-service test:e2e && npm run test:cypress", |
| 20 | + "test:cypress": "node_modules/.bin/cypress open" |
76 | 21 | }, |
77 | | - "snapshotSerializers": [ |
78 | | - "<rootDir>/node_modules/jest-serializer-vue" |
79 | | - ] |
80 | | - }, |
81 | | - "gitHooks": { |
82 | | - "pre-commit": "lint-staged" |
83 | | - }, |
84 | | - "lint-staged": { |
85 | | - "*.{js,jsx,vue}": [ |
86 | | - "vue-cli-service lint", |
87 | | - "git add" |
88 | | - ], |
89 | | - "*.{css,vue}": [ |
90 | | - "stylelint --fix", |
91 | | - "git add" |
92 | | - ] |
93 | | - }, |
94 | | - "license": "MIT", |
95 | | - "repository": { |
96 | | - "type": "git", |
97 | | - "url": "git+https://github.com/creativecommons/chooser.git" |
98 | | - } |
| 22 | + "dependencies": { |
| 23 | + "@creativecommons/vocabulary": "^2020.11.3", |
| 24 | + "@creativecommons/vue-vocabulary": "^2020.11.3", |
| 25 | + "@sentry/vue": "^5.29.2", |
| 26 | + "bulma": "^0.9.1", |
| 27 | + "clipboard": "^2.0.6", |
| 28 | + "core-js": "^3.6.5", |
| 29 | + "node-sass": "^4.14.1", |
| 30 | + "sass-loader": "^8.0.2", |
| 31 | + "vue": "^2.6.10", |
| 32 | + "vue-analytics": "^5.22.1", |
| 33 | + "vue-hotjar": "^1.2.0", |
| 34 | + "vue-i18n": "^8.20.0", |
| 35 | + "vue-scrollto": "^2.20.0", |
| 36 | + "vuex": "^3.5.1" |
| 37 | + }, |
| 38 | + "devDependencies": { |
| 39 | + "@fullhuman/postcss-purgecss": "^3.1.3", |
| 40 | + "@vue/cli-plugin-babel": "^4.4.6", |
| 41 | + "@vue/cli-plugin-e2e-nightwatch": "^4.4.6", |
| 42 | + "@vue/cli-plugin-eslint": "^4.4.6", |
| 43 | + "@vue/cli-plugin-unit-jest": "^4.4.6", |
| 44 | + "@vue/cli-service": "^4.4.6", |
| 45 | + "@vue/eslint-config-standard": "^5.1.2", |
| 46 | + "@vue/test-utils": "^1.1.2", |
| 47 | + "babel-eslint": "^10.1.0", |
| 48 | + "chromedriver": "^87.0.0", |
| 49 | + "clipboardy": "^2.3.0", |
| 50 | + "cypress": "^6.5.0", |
| 51 | + "eslint": "^6.8.0", |
| 52 | + "eslint-plugin-import": "^2.22.0", |
| 53 | + "eslint-plugin-node": "^10.0.0", |
| 54 | + "eslint-plugin-promise": "^4.2.1", |
| 55 | + "eslint-plugin-standard": "^4.0.1", |
| 56 | + "eslint-plugin-vue": "^6.2.2", |
| 57 | + "geckodriver": "^1.19.1", |
| 58 | + "shx": "^0.3.3", |
| 59 | + "vue-cli-plugin-i18n": "^0.6.1", |
| 60 | + "vue-template-compiler": "^2.6.10" |
| 61 | + }, |
| 62 | + "jest": { |
| 63 | + "moduleFileExtensions": [ |
| 64 | + "js", |
| 65 | + "vue" |
| 66 | + ], |
| 67 | + "moduleNameMapper": { |
| 68 | + "^@/(.*)$": "<rootDir>/src/$1" |
| 69 | + }, |
| 70 | + "transform": { |
| 71 | + "^.+\\.js$": "<rootDir>/node_modules/babel-jest", |
| 72 | + ".*\\.(vue)$": "<rootDir>/node_modules/vue-jest", |
| 73 | + "^.+\\.(svg|png)$": "<rootDir>/tests/unit/svgTransform.js" |
| 74 | + }, |
| 75 | + "snapshotSerializers": [ |
| 76 | + "<rootDir>/node_modules/jest-serializer-vue" |
| 77 | + ] |
| 78 | + } |
99 | 79 | } |
0 commit comments