forked from os-js/osjs-ace-application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "@osjs/ace-application",
"description": "OS.js v3 Ace Editor Application",
"version": "1.2.5",
"osjs": {
"type": "package"
},
"dependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint *.js",
"build": "webpack",
"watch": "webpack --watch",
"prepublishOnly": "npm run eslint && rm ./dist/* && NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/os-js/osjs-ace-application.git"
},
"files": [
"dist/",
"metadata.json"
],
"keywords": [
"osjs"
],
"author": "Anders Evenrud <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/os-js/osjs-ace-application/issues"
},
"homepage": "https://github.com/os-js/osjs-ace-application#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/runtime": "^7.2.0",
"@osjs/gui": "^4.0.20",
"babel-loader": "^8.0.5",
"brace": "^0.11.1",
"copy-webpack-plugin": "^4.6.0",
"eslint": "^5.12.0",
"hyperapp": "^1.2.9",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0"
}
}