-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.35 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.35 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
{
"author": "Thomas Goodwin <btgoodwin@geontech.com>",
"license": "GPL-3.0",
"name": "sigplot-ts",
"version": "0.3.5",
"description": "TypeScript-based Integration Library for SigPlot 2.0",
"main": "./index.js",
"module": "./esm/index.js",
"typings": "./index.d.ts",
"scripts": {
"build": "npm run build:es5 && npm run build:es6",
"build:es5": "tsc -p tsconfig.es5.json",
"build:es6": "tsc -p tsconfig.es6.json",
"prebuild": "rimraf dist",
"postbuild": "cp package.json README.md LICENSE COPYRIGHT dist",
"lint": "tslint --type-check --project tsconfig.json src/**/*.ts",
"dist": "cd dist && npm publish",
"docs": "npm run docs:clean && npm run docs:generate && npm run docs:sanitize",
"docs:clean": "rimraf docs",
"docs:generate": "typedoc --options typedoc.json --out docs src/lib",
"docs:sanitize": "find docs -type f -name '*.htm*' -exec sed -i '' 's|'$PWD'||g' {} +"
},
"repository": {
"type": "git",
"url": "https://github.com/geontech/sigplot-ts.git"
},
"keywords": [
"sigplot",
"typescript"
],
"dependencies": {
"sigplot": "git://github.com/geontech/sigplot.git"
},
"devDependencies": {
"@types/node": "^8.0.19",
"rimraf": "^2.6.1",
"ts-loader": "^2.3.2",
"ts-node": "^3.3.0",
"tslint": "~4.5.0",
"typedoc": "^0.8.0",
"typescript": "^2.4.2"
}
}