-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
{
"name": "typescript-generic-datastructures",
"version": "1.0.0",
"description": "",
"repository": "emyann/typescript-generic-datastructures",
"main": "./dist/typescript-generic-datastructures.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsnd --respawn ./src/examples/index.ts",
"build": "run-p build:js build:types",
"build:js": "TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --mode=production",
"build:types": "tsc -p tsconfig.prod.json --emitDeclarationOnly",
"semantic-release": "semantic-release",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"data structures",
"datastructures",
"data-structure",
"typescript",
"javascript",
"linked list",
"graph"
],
"release": {
"branches": [
"master",
"next",
{
"name": "beta",
"prerelease": true
}
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@types/node": "^13.7.0",
"@types/webpack": "^4.41.4",
"babel-loader": "^8.0.6",
"npm-run-all": "^4.1.5",
"semantic-release": "^17.0.2",
"source-map-loader": "^0.2.4",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}