-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.84 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "dspm",
"version": "0.0.0",
"description": "Package manager with dsl for configuration",
"bin": "build/dist/bin/dspm.js",
"main": "index.js",
"scripts": {
"build": "rm -rf build && tslint -p . && tsc -p tsconfig.prod.json",
"mocha": "mocha -r ts-node/register",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/concat-stream": "^1.6.0",
"@types/fs-extra": "^7.0.0",
"@types/lodash": "^4.14.134",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.7",
"@types/nconf": "0.10.0",
"@types/node": "^12.0.7",
"@types/request": "^2.48.1",
"@types/request-promise": "^4.1.44",
"@types/rimraf": "^2.0.2",
"@types/semver": "^6.0.0",
"@types/sinon": "^7.0.12",
"@types/sinon-chai": "^3.2.2",
"@types/tar-fs": "^1.16.1",
"@types/tar-stream": "^1.6.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.1.4",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
},
"dspm": {
"plugins": [
"jsProject"
]
},
"dependencies": {
"@types/mustache": "^0.8.32",
"@types/openpgp": "^4.4.5",
"@types/through2": "^2.0.34",
"bluebird": "^3.5.5",
"concat-stream": "^2.0.0",
"detect-libc": "^1.0.3",
"fs-extra": "^8.0.1",
"gunzip-maybe": "^1.4.1",
"lodash": "^4.17.11",
"log4js": "^4.3.1",
"mustache": "^3.0.1",
"nconf": "^0.10.0",
"openpgp": "^4.5.3",
"query-string": "^6.7.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"rimraf": "^2.6.3",
"semver": "^6.1.1",
"tar-fs": "^2.0.0",
"tar-stream": "^2.1.0",
"through2": "^3.0.1"
}
}