-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.17 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.17 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "concordialang-ui-html",
"version": "0.1.0",
"description": "HTML plugin for the Concordia UI Prototyper",
"license": "AGPL-3.0",
"author": "The Concordia UI Prototyper Team",
"readme": "README.md",
"homepage": "https://github.com/concordialang/ui-html",
"bugs": "https://github.com/concordialang/ui-html/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/concordialang/ui-html.git"
},
"keywords": [
"concordia",
"concordia-lang",
"concordialang",
"ui",
"user-interface",
"plugin",
"html",
"ui-html"
],
"main": "dist",
"types": "dist",
"files": [
"dist/*",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"scripts": {
"postpack": "rimraf oclif.manifest.json",
"build": "rimraf dist && tsc && oclif-dev manifest",
"prepack": "npm run build && oclif-dev readme",
"test": "jest --passWithNoTests",
"version": "oclif-dev readme && git add README.md",
"postversion": "git push && git push --tags"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "test/.+\\.spec\\.ts$",
"globals": {
"ts-jest": {
"diagnostics": false
}
}
},
"oclif": {
"commands": "./dist/commands",
"bin": "html",
"devPlugins": [
"@oclif/plugin-help"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run build && lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@oclif/command": "^1.5.12",
"@oclif/config": "^1.12.12",
"@types/lodash": "^4.14.134",
"concordialang-ui-core": "^0.2.3",
"cosmiconfig": "^5.2.1",
"lodash": "^4.17.11",
"tslib": "^1.9.3"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.0",
"@oclif/plugin-help": "^2.1.6",
"@oclif/tslint": "^3.1.1",
"@types/html-minifier": "^3.5.3",
"@types/jest": "^24.0.11",
"@types/node": "^10.14.4",
"html-minifier": "^4.0.0",
"husky": "^1.3.1",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"memfs": "^2.15.2",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"typescript": "^3.4.2"
},
"engines": {
"node": ">=8.0.0"
}
}