forked from UniBO-PRISMLab/wam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.87 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
71
72
{
"name": "@arces-wot/wam",
"version": "0.5.8",
"description": "Web of Thing Application Manager",
"main": "./dist/src/wam.js",
"bin": {
"wam": "./dist/src/wam.js"
},
"repository": {
"url": "https://github.com/arces-wot/wam",
"type": "git"
},
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc -p .",
"postbuild": "copyfiles -a \"./templates/**\" ./dist",
"format": "prettier --write \"src/**/*.ts\"",
"format:fix": "pretty-quick --staged",
"lint": "tslint -p tsconfig.json -c tslint.json",
"precommit": "run-s format:fix lint",
"start": "ts-node src/wam.ts",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"WoT",
"IoT",
"CLI",
"dev",
"tools"
],
"author": "Cristiano Aguzzi <[email protected]>",
"contributors": [
"Lorenzo Gigli <[email protected]>"
],
"license": "MIT",
"dependencies": {
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^6.0.0",
"chalk": "^2.4.2",
"clear": "^0.1.0",
"commander": "^3.0.2",
"figlet": "^1.2.4",
"fs-extra": "^8.1.0",
"global-npm": "^0.4.1",
"handlebars": "^4.7.6",
"inquirer": "^7.0.0",
"magic-string": "^0.25.7",
"ora": "^5.4.1",
"path": "^0.12.7",
"rollup": "^2.0.0",
"rollup-plugin-commonjs": "^10.1.0"
},
"devDependencies": {
"@types/figlet": "^1.2.0",
"@types/fs-extra": "^8.0.1",
"@types/global-npm": "^0.4.0",
"@types/inquirer": "^7.3.3",
"@types/lodash": "^4.14.182",
"@types/node": "^12.12.21",
"@types/npm": "^2.0.31",
"@types/rollup": "^0.54.0",
"copyfiles": "^2.1.1",
"husky": "^3.0.9",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.9.10"
}
}