-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·89 lines (89 loc) · 2.54 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@rtcad/core",
"private": false,
"version": "1.0.0-rc0",
"description": "runtime type checking and documentation",
"source": "src/index.ts",
"main": "build/index.js",
"umd:main": "build/index.umd.js",
"module": "build/index.mjs",
"unpkg": "build/index.umd.js",
"types": "build/src/index.d.ts",
"update": "npx npm-check-updates -u",
"scripts": {
"prepublishOnly": "npm run rebuild && npm run test",
"postpublish": "npm run clean",
"build": "microbundle",
"clean": "rimraf build/",
"rebuild": "npm run clean && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"show-perf": "node ./tools/showPerfResults",
"prettify": "prettier --write '**/*.(j|t)s'",
"prettify:watch": "onchange '**/*.(j|t)s' -- prettier --write {{changed}}",
"ts-check": "tsc --noEmit",
"ts-check:watch": "npm run ts-check -- --watch",
"update-deps": "npx npm-check-updates -u"
},
"peerDependencies": {},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.18",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.2.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.2",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"microbundle": "^0.11.0",
"onchange": "^6.0.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"typescript": "^3.6.2",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
},
"author": "artalar",
"license": "MIT",
"readme": "README.md",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/artalar/rtcad.git"
},
"bugs": {
"url": "https://github.com/artalar/rtcad/issues"
},
"homepage": "https://artalar.github.io/rtcad",
"keywords": [
"rtcad"
],
"files": [
"/README.md",
"/LICENSE.md",
"/package.json",
"/src",
"/build",
"/docs"
],
"directories": {
"lib": "src",
"man": "docs",
"doc": "docs"
}
}