-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.05 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
64
65
66
{
"name": "magicxer",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"version": "1.1.8",
"description": "Magical words mixer",
"author": {
"name": "Leszek Pietrzak",
"email": "leszek@magicznyleszek.xyz"
},
"private": false,
"homepage": "https://github.com/magicznyleszek/magicxer",
"repository": "git+https://github.com/magicznyleszek/magicxer.git",
"bugs": "https://github.com/magicznyleszek/magicxer/issues",
"license": "CC0-1.0",
"scripts": {
"test": "jest",
"test-watch": "jest --watchAll --coverage",
"start": "parcel -p 2038 src/index.html -d dev",
"build-all": "npm run build-website && npm run build-module",
"build-website": "pretty-quick --branch main && rm -rf docs && parcel build src/index.html -d docs --public-url ./ --no-cache && npm run copy-static-files",
"build-module": "pretty-quick --branch main && tsc -p tsconfig.module.json",
"copy-static-files": "cp CNAME favicon.png humans.txt LICENSE manifest.json favicon.ico favicon.png docs",
"prepublishscript": "npm test && npm run build-module",
"publish-please": "publish-please",
"prepublish": "publish-please guard"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.141",
"@vue/component-compiler-utils": "^3.0.0",
"jest": "^24.9.0",
"parcel-bundler": "^1.12.3",
"postcss": "^7.0.18",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"publish-please": "^5.5.1",
"stylelint": "^11.0.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3",
"vue-hot-reload-api": "^2.3.4",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"lodash.orderby": "^4.6.0",
"lodash.uniq": "^4.5.0",
"vue": "^2.6.10",
"vuex": "^3.1.1"
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js?|ts?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}