-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.61 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "squarebox",
"version": "1.0.0",
"description": "Module Bundler for Javascript ES6",
"private": true,
"bin": {
"sqbox": "bin/sqbox"
},
"scripts": {
"test": "_mocha --opts mocha.opts --watch test/commands",
"it": "_mocha --opts mocha.opts test/integration",
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- --opts mocha.opts test/commands",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"docs": "esdoc",
"build": "node register"
},
"files": [
"bin",
"lib",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"keywords": [
"module",
"bundler",
"es6"
],
"author": "Patricio Ferreira <3dimentionar@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-plugin-module-resolver": "2.5.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-2": "6.22.0",
"babel-register": "6.23.0",
"chai": "3.5.0",
"coveralls": "3.0.5",
"esdoc": "1.1.0",
"esdoc-standard-plugin": "1.0.0",
"istanbul": "1.1.0-alpha.1",
"marked": "^0.7.0",
"mocha": "6.2.0",
"mocha-lcov-reporter": "1.3.0",
"sinon": "1.17.7"
},
"dependencies": {
"async": "^2.1.5",
"chalk": "1.1.3",
"esprima": "3.1.3",
"extend": "3.0.2",
"fs-extra": "2.0.0",
"glob": "7.1.1",
"jsonpath": "1.0.2",
"minimatch": "3.0.3",
"node-watch": "0.4.1",
"request": "2.88.0",
"underscore": "1.8.3",
"underscore.string": "3.3.5",
"yargs": "6.6.0"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
}
}