-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 KB
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
{
"name": "master-styles-group",
"version": "0.1.1",
"license": "MIT",
"author": "SerKo (https://github.com/serkodev)",
"source": "src/index.ts",
"main": "dist/index.js",
"targets": {
"main": {
"optimize": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/serkodev/master-styles-group.git"
},
"homepage": "https://github.com/serkodev/master-styles-group",
"scripts": {
"predev": "rm -rf .parcel-cache & rm -rf dist-dev",
"dev": "parcel tests/index.html --dist-dir dist-dev",
"prebuild": "rm -rf .parcel-cache & rm -rf dist",
"build": "parcel build",
"prepublishOnly": "yarn lint && yarn test && yarn build",
"test": "jest",
"lint": "eslint .",
"lint-fix": "eslint --fix ."
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.13.0",
"jest": "^27.5.1",
"parcel": "^2.4.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"@master/style": "^1.1.0",
"@master/styles": "^1.3.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"files": [
"dist/**/*"
]
}