-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.39 KB
/
package.json
File metadata and controls
40 lines (40 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
{
"name": "mscratch-utils",
"version": "0.1.3",
"description": "A collection of JavaScript utility functions.",
"main": "dist/mscratch-utils.js",
"scripts": {
"build": "npm run clean && webpack --progress --colors --bail",
"clean": "rimraf ./dist && mkdirp dist",
"test": "mocha --require mocha-setup.js --recursive --compilers js:babel-core/register",
"pub": "npm publish --registry http://npm.makeblock.local:4873"
},
"repository": {
"type": "git",
"url": "https://github.com/MakeblockTeam/JsUtils.git"
},
"author": "makeblock team",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"chai": "^4.1.2",
"jsdom": "^11.10.0",
"mkdirp": "^0.5.1",
"require-hacker": "^3.0.1",
"rimraf": "^2.6.2",
"webpack": "^3.10.0"
},
"dependencies": {
"utf8": "^3.0.0"
}
}