-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 945 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
{
"name": "@openclams/clams-ml",
"version": "1.6.8",
"description": "Core library of the data model for the Clams modeling language.",
"main": "./dist/clams-ml.js",
"files": [
"dist"
],
"types": "./dist/clams-ml.d.ts",
"scripts": {
"build": "tsc && npm pack",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'src/**/*.spec.ts'"
},
"keywords": [
"OpenClams",
"Cloud Computing",
"Modeling Language"
],
"author": "Otto Bibartiu <[email protected]>",
"license": "(MIT OR Apache-2.0)",
"repository": "git://github.com/openclams/clams-ml.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"ts-loader": "^8.0.5",
"ts-node": "^9.0.0",
"tslint": "^5.20.1",
"typescript": "^3.9.7"
}
}