-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.39 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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@jungleford/simple-utils",
"version": "0.1.1",
"description": "A set of simple utilities for internal usage.",
"author": "Samuel Lee",
"homepage": "https://github.com/jungleford/simple-utils",
"license": "(MIT)",
"repository": {
"type": "git",
"url": "git://github.com/jungleford/simple-utils.git"
},
"keywords": [
"utils"
],
"main": "lib/js",
"scripts": {
"compile": "babel --presets es2015,stage-0 -d lib/ src/",
"build": "npm run compile && webpack --config ./webpack.babel.prod.js",
"test": "./node_modules/.bin/mocha-webpack --webpack-config webpack.babel.dev.js test/js/**/*.spec.js",
"karma": "./node_modules/.bin/karma start --single-run"
},
"dependencies": {
"lodash": "^4.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"chai": "^4.2.0",
"karma": "^3.1.4",
"karma-babel-preprocessor": "^7.0.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"mocha-webpack": "2.0.0-beta.0",
"webpack": "^4.11.1",
"webpack-cli": "^3.0.8"
}
}