forked from SAP-archive/i40-aas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 980 Bytes
/
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
{
"name": "i40-aas-objects",
"version": "1.0.0",
"description": "",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"format": "prettier --config .prettierrc.js --write \"./src/**/*.ts\"",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"tsc": "tsc",
"build": "npm run tsc",
"postinstall": "npm run build",
"start": "npm run build && node/dist/index.js",
"browserify": "npm run build && browserify ./dist/index.js --standalone aas --outfile aasForBrowser.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "^6.10.2",
"install": "^0.13.0",
"jsonschema": "^1.2.4",
"npm": "^6.10.2",
"typescript": "^3.4.5"
},
"devDependencies": {
"@types/node": "^12.0.2",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"ts-node": "^8.2.0",
"typescript": "^3.4.5",
"prettier": "^1.18.2"
}
}