-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.02 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
{
"name": "soundq",
"version": "0.3.0",
"description": "",
"main": "./build/soundq.js",
"module": "./build/soundq.module.js",
"files": [
"src/",
"build/"
],
"scripts": {
"lint": "eslint ./; true",
"lint:fix": "eslint --fix ./; true",
"start": "NODE_ENV=development webpack-dev-server",
"dev": "NODE_ENV=development webpack",
"build": "NODE_ENV=production webpack",
"test": "jest --notify --watchAll"
},
"browser": true,
"author": "Brian Chirls <[email protected]> (http://chirls.com)",
"private": false,
"license": "MIT",
"dependencies": {
"event-emitter": "^0.3.5"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"autoprefixer": "^9.6.1",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"datavized-code-style": "github:datavized/code-style",
"eslint": "^6.3.0",
"eslint-config-crockford": "^2.0.0",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.16.0",
"fast-async": "^6.3.8",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"raw-loader": "^3.1.0",
"react-dev-utils": "^9.0.3",
"style-loader": "^1.0.0",
"url-loader": "^2.1.0",
"web-audio-test-api": "^0.5.2",
"webpack": "^4.39.3",
"webpack-build-notifier": "^1.1.1",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.2"
},
"jest": {
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
]
}
}