-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.39 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
{
"name": "milkdrop-preset-converter",
"version": "0.1.3",
"description": "Convert Milkdrop Presets",
"author": "Jordan Berg <jordannealberg@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jberg/milkdrop-preset-converter.git"
},
"main": "dist/milkdrop-preset-converter.min.js",
"unpkg": "dist/milkdrop-preset-converter.min.js",
"files": [
"dist/milkdrop-preset-converter.min.js"
],
"scripts": {
"build": "webpack --config config/webpack.config.js --env prod",
"dev": "webpack --config config/webpack.config.js --progress --colors --watch --env dev",
"test": "jasmine test/index.spec.js"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"hlslparser-js": "^0.1.1",
"lodash": "^4.17.4",
"milkdrop-eel-parser": "^0.0.4",
"milkdrop-preset-utils": "^0.1.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"jasmine": "^3.2.0",
"uglifyjs-webpack-plugin": "^1.1.8",
"webpack": "^3.10.0",
"yargs": "^11.0.0"
}
}