-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.06 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.06 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
{
"name": "@truekit/core",
"version": "0.1.0",
"description": "The CORE of TrueKit™",
"main": "index.js",
"scripts": {
"test": "jest",
"build-ts": "tsc",
"build": "npm run build-ts && npm run build-i18n && npm run build-dist",
"build-clean": "git clean -f",
"build-dist": "webpack",
"prepublishOnly": "npm test && npm run build",
"postpublish": "npm run build-clean"
},
"keywords": [
"css",
"js",
"truekit",
"core",
"theme",
"react"
],
"files": [
"*.js",
"*.d.ts",
"./theme/*.js",
"./theme/*.d.ts"
],
"author": "RubaXa <trash@rubaxa.org>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^11.13.17",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"jest": "^24.8.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"dependencies": {
"@artifact-project/css": "^0.1.4"
},
"peerDependencies": {
"@types/react": ">=16.8.3",
"react": ">=16.8.2"
}
}