-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
43 lines (43 loc) · 1.49 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
{
"name": "aframe-keyboard",
"version": "0.0.1",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "./node_modules/.bin/karma start karma.conf.js",
"test:firefox": "./node_modules/.bin/karma start karma.conf.js --browsers Firefox",
"test:chrome": "./node_modules/.bin/karma start karma.conf.js --browsers Chrome",
"build": "./node_modules/.bin/webpack --config webpack.config.js",
"check": "./node_modules/.bin/eslint --ignore-pattern node_modules --ignore-pattern non_npm_dependencies --ignore-pattern dist --ext .js --ext .jsx . --quiet"
},
"author": "Andre Vasconcelos (Wånderer Studio)",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"browserify": "^16.5.0",
"browserify-derequire": "^1.0.1",
"browserify-istanbul": "^3.0.1",
"chai": "^4.2.0",
"chai-shallow-deep-equal": "^1.4.6",
"eslint": "^5.16.0",
"eslint-config-google": "^0.12.0",
"karma": "^4.4.1",
"karma-browserify": "^6.1.0",
"karma-chai-shallow-deep-equal": "0.0.4",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon-chai": "^2.0.2",
"mocha": "^7.1.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.5.0",
"watchify": "^3.11.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}