-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "data-plotter",
"version": "1.1.0",
"description": "2D Data Plotter",
"module": "examples/build/data-plotter.js",
"source": "src/index.js",
"types": "types/index.d.ts",
"files": [
"examples/build",
"LICENSE",
"src",
"types",
"package.json"
],
"scripts": {
"start": "rollup -w -c",
"build": "rollup -c",
"create-tag": "cross-var git tag -a \"v$npm_package_version\" -m \"Release Version $npm_package_version\" && cross-var git push origin \"v$npm_package_version\"",
"update-version": "cross-var echo \"v$npm_package_version\" > .version",
"fix-syntax": "standardx --fix",
"generate-types": "npx -p typescript tsc src/* --declaration --allowJs --emitDeclarationOnly --outDir types"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ohzinteractive/data-plotter.git"
},
"keywords": [
"ohzi",
"2d plotter",
"data plotter",
"function plotter"
],
"author": "OHZI Interactive",
"license": "MIT",
"bugs": {
"url": "https://github.com/ohzinteractive/data-plotter/issues"
},
"homepage": "https://github.com/ohzinteractive/data-plotter",
"devDependencies": {
"cross-var": "^1.1.0",
"rollup": "^2.44.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"standardx": "^7.0.0",
"typescript": "^4.4.3"
}
}