-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.83 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
{
"name": "web-lead",
"version": "0.0.1",
"description": "Browser-based synthetizer",
"main": "dist/index.html",
"scripts": {
"build": "webpack",
"build:production": "webpack -p",
"dev": "webpack-dev-server --inline --content-base dist/",
"elm": "rm -rf elm-stuff/build-artifacts && elm-make src/elm/Main.elm --warn --output=dist/bundle.js",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/",
"test": "mocha --recursive --compilers ts:ts-node/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pablobcb/elm-osiris.git"
},
"author": "Pablo Botelho",
"license": "MIT",
"bugs": {
"url": "https://github.com/pablobcb/elm-lead/issues"
},
"homepage": "https://github.com/pablobcb/elm-lead#readme",
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.9.0",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"elm-webpack-loader": "^3.0.3",
"eslint": "^2.11.0",
"eslint-loader": "^1.3.0",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"mocha": "^2.5.3",
"normalize.css": "^4.1.1",
"postcss-loader": "^0.9.1",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"stylint": "^1.3.10",
"stylint-loader": "^1.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^2.1.0",
"svg-url-loader": "^1.0.3",
"ts-loader": "^0.8.2",
"ts-node": "^0.9.3",
"tslint": "^3.13.0",
"typings": "^1.3.1",
"web-audio-test-api": "^0.5.2",
"webpack": "^1.13.1"
},
"dependencies": {
"@types/webaudioapi": "0.0.26",
"babel-eslint": "^6.1.0",
"webpack-dev-server": "^1.14.1"
}
}