-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "vsm-template-generator",
"version": "0.1.0",
"description": "Generates VSM-templates based on a meta-template, and a variable set of user-driven choices",
"main": "src/index.js",
"scripts": {
"lint": "eslint src",
"test": "mocha \"src/**/*.test.js\" --check-leaks",
"testw": "mocha \"src/**/*.test.js\" --check-leaks --watch",
"start": "npm run demo",
"build": "webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vsm/vsm-template-generator"
},
"keywords": [
"VSM",
"template",
"VSM-template",
"ontology"
],
"author": "Steven Vercruysse (http://stcruy.com)",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/vsm/vsm-template-generator/issues"
},
"homepage": "https://github.com/vsm/vsm-template-generator#readme",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.7.2",
"mocha": "^6.2.2",
"terser-webpack-plugin": "^2.3.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}