-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "@osjs/proc-provider",
"version": "1.7.3",
"description": "OS.js Proc Provider",
"main": "dist/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint src/*.js",
"build": "webpack",
"watch": "webpack --watch",
"prepublishOnly": "npm run eslint && rm ./dist/* && NODE_ENV=production npm run build"
},
"files": [
"dist/",
"src/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andersevenrud/osjs-proc-provider.git"
},
"keywords": [
"osjs"
],
"author": "Anders Evenrud <andersevenrud@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andersevenrud/osjs-proc-provider/issues"
},
"homepage": "https://github.com/andersevenrud/osjs-proc-provider#readme",
"devDependencies": {
"@osjs/dev-meta": "^1.1.1"
},
"dependencies": {
"@osjs/event-emitter": "^1.0.4",
"node-pty": "^0.9.0",
"uuid": "^8.2.0",
"xterm": "^3.10.1"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
},
"extends": "@osjs/eslint-config"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
}
}