-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.4 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "veda",
"main": "./lib/index",
"version": "2.9.2",
"description": "VJ / Live Coding environment with GLSL",
"keywords": [],
"activationCommands": {
"atom-workspace": "veda:toggle"
},
"repository": "https://github.com/fand/veda",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-message-panel": "^1.3.0",
"atom-package-deps": "^4.6.2",
"babel-core": "^6.26.3",
"execa": "^0.10.0",
"express": "^4.16.3",
"glslify": "^6.1.1",
"json5": "^1.0.1",
"lodash": "^4.17.10",
"osc-min": "^1.1.1",
"pify": "^3.0.0",
"signal-exit": "^3.0.2",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"three": "^0.92.0",
"tmp": "^0.0.33",
"vedajs": "^0.9.0",
"webpack": "^4.8.3",
"which": "^1.2.14"
},
"package-deps": [
"language-glsl",
"linter-glsl",
"autocomplete-glsl"
],
"devDependencies": {
"@types/atom": "^1.26.0",
"@types/execa": "^0.9.0",
"@types/json5": "^0.0.29",
"@types/lodash": "^4.14.109",
"@types/pify": "^3.0.2",
"@types/socket.io-client": "^1.4.32",
"@types/three": "^0.92.0",
"@types/tmp": "^0.0.33",
"@types/which": "^1.3.1",
"ava": "^0.25.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.1",
"npm-run-all": "^4.1.3",
"prettier": "^1.12.1",
"ts-loader": "^4.3.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.12.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.8.3",
"webpack-cli": "^2.1.3"
},
"scripts": {
"ci": "run-p lint test build",
"test": "ava test --verbose",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"dev": "run-s watch",
"build": "run-p build:ts build:client",
"build:ts": "tsc",
"build:client": "webpack --mode production",
"watch": "run-p watch:ts watch:client",
"watch:ts": "tsc -w",
"watch:client": "webpack -w --mode development",
"prepublish": "npm run ci",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{ts}": [
"tslint --fix",
"git add"
],
"*.{md}": [
"prettier --write",
"git add"
]
},
"ava": {
"require": [
"babel-register",
"babel-polyfill"
],
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}
}