-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.56 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
{
"name": "chart-symbols",
"version": "0.1.0-beta.1",
"description": "Symbols of chart types.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"browser": "dist/index.js",
"module": "es/index.js",
"files": [
"src",
"es",
"dist",
"lib"
],
"scripts": {
"start": "webpack-dev-server --port 8325",
"extractsvg": "npm run build && node lib/scripts/extract-svg.js",
"readmepreview": "npm run build && node lib/scripts/readme-preview.js",
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"build": "rm -rf lib && tsc --pretty",
"module": "rm -rf es && tsc -t ES5 -m ESNext --outDir es",
"prepublish": "npm run module && npm run build && npm run pack",
"pack": "webpack --config=webpack.config.js",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git@github.com:Plothis/ChartSymbols.git"
},
"keywords": [
"Chart",
"Visualization",
"Thumbnails"
],
"author": "neoddish",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"devDependencies": {
"@antv/knowledge": "^1.1.0",
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.7.4",
"@babel/runtime": "^7.6.3",
"@babel/types": "^7.12.12",
"@types/fs-extra": "^9.0.6",
"@types/inquirer": "^7.3.1",
"@types/jest": "^24.0.24",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/svgo": "^1.3.3",
"babel-loader": "^8.0.6",
"css-loader": "^5.0.1",
"fs-extra": "^9.0.1",
"inquirer": "^7.3.3",
"jest": "^24.9.0",
"less": "^3.13.1",
"less-loader": "^7.2.1",
"prettier": "^1.19.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"style-loader": "^2.0.0",
"svg-url-loader": "^7.0.0",
"svgo": "^1.3.2",
"ts-jest": "^24.2.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.11.1"
}
}