-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 953 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 953 Bytes
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
{
"name": "data-struct-js",
"version": "0.0.14",
"description": "Provide commonly used data-structures for javascript.",
"main": "index.js",
"scripts": {
"compile": "npx babel src/ --out-dir lib",
"winpublish": "rmdir /s /q lib && npm run compile && npm publish",
"macpublish": "rm -rf lib && npm run compile && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoderMonkie/data-struct-js.git"
},
"keywords": [
"data-structure",
"javascript"
],
"author": "CoderMonkey <maonianyou@gmail.com> (http://github.com/codermonkie)",
"license": "MIT",
"bugs": {
"url": "https://github.com/CoderMonkie/data-struct-js/issues"
},
"homepage": "https://github.com/CoderMonkie/data-struct-js#readme",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.6"
}
}