forked from TheTeapot418/LFO.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "lfo-js",
"version": "0.0.1",
"description": "LFOs in JavaScript",
"main": "dist/LFO.js",
"directories": {
"example": "example"
},
"scripts": {
"example": "./node_modules/.bin/webpack-dev-server",
"build-docs": "./node_modules/.bin/webpack --config ./webpack.config.js --optimize-minimize --output-path ./docs",
"prepublish": "npm run build && npm run build-docs",
"build": "./node_modules/.bin/webpack --config ./webpack.config.js --optimize-minimize",
"build-dev": "./node_modules/.bin/webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/TheTeapot418/LFO.js.git"
},
"keywords": [
"lfo",
"interactive",
"automation",
"frequency",
"oscillator",
"animation"
],
"author": "Guillaume Bauer",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheTeapot418/LFO.js/issues"
},
"homepage": "https://github.com/TheTeapot418/LFO.js",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.0",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0"
},
"dependencies": {}
}