This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
70 lines (70 loc) · 2.5 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "buddy",
"description": "A fast, simple build tool for web projects.",
"version": "6.14.7",
"author": "popeindustries <alex@pope-industries.com>",
"keywords": ["build", "buildtool", "bundle", "bundler", "modules", "javascript", "js", "css", "html"],
"dependencies": {
"async": "2.6.0",
"autoprefixer": "7.1.6",
"babel-core": "6.26.0",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-minify-dead-code-elimination": "0.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"browserslist": "2.8.0",
"buddy-cli": "6.1.0",
"chalk": "2.3.0",
"chokidar": "1.7.0",
"cssnano": "3.10.0",
"glob": "7.1.2",
"inline-source": "5.2.6",
"lodash": "4.17.4",
"md5": "2.2.1",
"minimatch": "3.0.4",
"portscanner": "2.1.1",
"postcss": "6.0.14",
"pretty-bytes": "4.0.2",
"recur-fs": "2.2.4",
"source-map": "0.6.1",
"uglify-es": "3.1.8",
"uglify-js": "3.1.8"
},
"devDependencies": {
"babel-plugin-inferno": "3.3.0",
"babel-plugin-syntax-jsx": "6.18.0",
"babel-plugin-transform-async-generator-functions": "6.24.1",
"babel-plugin-transform-es5-property-mutators": "*",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-display-name": "6.25.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-env": "1.6.1",
"expect.js": "*",
"mocha": "^4.0.1",
"postcss-calc": "^6.0.1",
"postcss-custom-properties": "^6.2.0",
"rimraf": "2.6.2"
},
"main": "./lib/buddy.js",
"bin": {
"buddy": "./bin/buddy"
},
"scripts": {
"example": "./bin/example",
"install:packages": "./bin/packages install",
"outdated:packages": "./bin/packages outdated",
"copy": "cp ./node_modules/babel-preset-env/data/plugins.json ./lib/config/babel-plugins.json",
"test:all":
"NODE_ENV=test mocha \"./packages/buddy-*/test/test.js\" \"./test/*-test.js\" --reporter spec --timeout 20000 --bail",
"test": "NODE_ENV=test mocha \"./test/*-test.js\" --reporter spec --timeout 20000 --bail",
"test:windows": "set NODE_ENV=test&&node.exe ./node_modules/mocha/bin/mocha --reporter spec -t 20000 --bail",
"perf:build": "NODE_ENV=test node perf/build.js",
"perf:config": "NODE_ENV=test node perf/config.js",
"inspect": "NODE_ENV=test node --inspect --debug-brk perf/build.js"
},
"engines": {
"node": ">=6"
},
"repository": "git://github.com/popeindustries/buddy.git",
"readmeFilename": "README.md",
"license": "MIT"
}