-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.94 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "vsm-box",
"version": "1.1.4",
"description": "Webcomponent for building and showing a VSM-sentence",
"main": "dist/vsm-box.min.js",
"scripts": {
"dev": "npm-run-all --parallel start testwi",
"start": "webpack-dev-server --config webpack.config.js --env.NODE_ENV=development",
"test": "mocha-webpack --require src/test-setup.js \"src/**/*.test.js\" --check-leaks --webpack-env.NODE_ENV=testing",
"testw": "mocha-webpack --require src/test-setup.js \"src/**/*.test.js\" --check-leaks --webpack-env.NODE_ENV=testing --watch",
"testwi": "mocha-webpack --require src/test-setup.js \"src/**/*.test.js\" --check-leaks --webpack-env.NODE_ENV=testing --watch --interactive=false",
"lint": "eslint --ext .js,.vue src",
"build": "npm run build-slim && npm run build-stan",
"build-open": "npm run build && opn src/index-prods.html",
"build-slim": "webpack --config webpack.config.js --env.NODE_ENV=production",
"build-stan": "webpack --config webpack.config.js --env.NODE_ENV=production --env.standalone=true",
"prepublishOnly": "npm run lint && npm run test && npm run build-slim && npm run build-stan"
},
"files": [
"dist/**/*"
],
"keywords": [
"VSM",
"ontology",
"identifier",
"term",
"syntax",
"sentence",
"connector"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vsm/vsm-box"
},
"author": "Steven Vercruysse (http://stcruy.com)",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/vsm/vsm-box/issues"
},
"homepage": "https://github.com/vsm/vsm-box#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@vue/test-utils": "1.0.0-beta.28",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^2.1.0",
"document-register-element": "^1.13.1",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-vue": "^5.1.0",
"html-webpack-plugin": "^3.2.0",
"jsdom": "13.1.0",
"jsdom-global": "^3.0.2",
"json5": "^2.1.0",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"npm-run-all": "^4.1.5",
"null-loader": "^0.1.1",
"opn-cli": "^4.0.0",
"sinon": "^7.2.3",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-recess-order": "^2.0.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-webpack-plugin": "^0.10.5",
"terser-webpack-plugin": "^1.2.1",
"text-transform-loader": "^2.0.0",
"vsm-dictionary-cacher": "^1.1.2",
"vsm-dictionary-local": "^2.6.0",
"vsm-json-pretty": "^1.2.3",
"vue": "^2.5.22",
"vue-custom-element": "^3.2.6",
"vue-loader": "^15.6.2",
"vue-template-compiler": "^2.5.22",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"string-style-html": "^1.1.6",
"vsm-autocomplete": "^1.9.2"
}
}