-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.06 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.06 KB
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
{
"name": "javascript-dojo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/karma start",
"babelify": "npx babel ./module/es5.js --out-file ./module/es6.js --presets=env",
"webpack": "npx webpack",
"bundle": "node ./module/bundle/main.bundle.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"jasmine-core": "2.9.1",
"jasmine-pretty-html-reporter": "0.2.5",
"jasmine2-custom-message": "0.8.4",
"karma": "2.0.0",
"karma-babel-preprocessor": "^7.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-html-live-reporter": "0.2.0",
"karma-html-reporter": "0.2.7",
"karma-jasmine": "1.1.1",
"karma-source-map-support": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"webpack": "^3.11.0"
},
"dependencies": {}
}