-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.46 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
67
68
{
"name": "@valencyhq/valency",
"version": "0.1.17",
"description": "Valency is a tool to manage and serve design assets",
"source": "src/valency.ts",
"main": "dist/valency.js",
"module": "dist/valency.module.js",
"exports": "./dist/valency.modern.js",
"unpkg": "dist/valency.umd.js",
"umd:main": "dist/valency.umd.js",
"typings": "dist/valency.d.ts",
"files": [
"dist",
"readme.md"
],
"devDependencies": {
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"easyjson": "^0.1.2",
"eslint": "^7.9.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-prettier": "^6.10.1",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^22.0.0",
"jest": "^26.4.2",
"microbundle": "^0.12.0",
"prettier": "^2.0.4",
"ts-jest": "^26.3.0",
"typescript": "^4.0.3"
},
"scripts": {
"build": "microbundle -o dist/ --sourcemap false --compress false --globals valency=Valency --external=none",
"dev": "microbundle watch -o dist/ --sourcemap false --compress false",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"release:setup": "chmod +x ./scripts/release.sh",
"release:patch": "./scripts/release.sh patch",
"release:minor": "./scripts/release.sh minor",
"release:major": "./scripts/release.sh major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ValencyHQ/vanilla"
},
"keywords": [],
"jest": {
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"node_modules",
"dist",
"coverage"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"author": "ahkohd",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ValencyHQ/vanilla/issues"
},
"homepage": "https://github.com/ValencyHQ/vanilla#readme"
}