-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.6 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
{
"name": "bash-models",
"version": "1.1.13",
"description": "A set of models that expose APIs for parsing, creating, and manipulating Bash Files",
"scripts": {
"clean": "rimraf ./dist.",
"build": "npm run clean && tsc",
"copypackage": "copyfiles package.json ./dist",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"bwpublish-test": "npm run build && npm run test && npm run copypackage && cd dist && npm publish --dry-run && cd ..",
"bwpublish": "npm run build & npm run test && npm run copypackage && cd dist && npm publish && cd .."
},
"repository": {
"type": "git",
"url": "git+https://github.com/joelong01/bash-models.git"
},
"files": [
"*.js",
"*.d.ts",
"*.json",
"license",
"*.md",
"node_modules"
],
"keywords": [
"bash",
"typescript",
"parse",
"create"
],
"author": "Joe Long",
"license": "MIT",
"bugs": {
"url": "https://github.com/joelong01/bash-models/issues"
},
"homepage": "https://github.com/joelong01/bash-models#readme",
"dependencies": {
"lodash": "^4.17.15",
"strongly-typed-events": "^1.4.10"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.133",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.5",
"chai": "^4.2.0",
"copyfiles": "^2.1.0",
"mocha": "^6.2.2",
"node": "^12.4.0",
"rimraf": "^2.7.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
}
}