forked from jameslnewell/tradie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.54 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "tradie",
"version": "1.1.1",
"description": "A semi-opinionated build tool for frontend projects. Use it to lint, bundle and test your script and style files.",
"keywords": [
"tradie",
"build",
"tool",
"bundle",
"bundler",
"lint",
"test",
"browserify",
"sass-composer",
"eslint",
"mocha"
],
"repository": {
"type": "git",
"url": "[email protected]:jameslnewell/tradie.git"
},
"dependencies": {
"autoprefixer": "^6.4.0",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.5",
"case-sensitive-paths-webpack-plugin": "^1.1.2",
"chalk": "^1.1.1",
"commander": "^2.9.0",
"css-loader": "^0.25.0",
"eslint": "^3.2.2",
"ext-to-regex": "^0.1.0",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "^0.9.0",
"file-name": "^0.1.0",
"file-size": "^1.0.0",
"find-and-read-package-json": "^1.0.0",
"glob": "^7.0.3",
"humanize-duration": "^3.9.1",
"json-loader": "^0.5.4",
"json5": "^0.5.0",
"lodash.every": "^4.5.1",
"lodash.mergewith": "^4.5.1",
"make-error-cause": "^1.2.1",
"memory-fs": "^0.3.0",
"minimatch": "^3.0.3",
"mocha": "^3.0.0",
"node-noop": "^1.0.0",
"node-sass": "^3.8.0",
"object-values": "^1.0.0",
"postcss": "^5.1.1",
"postcss-loader": "^0.13.0",
"promised-del": "^1.0.2",
"resolve": "^1.1.7",
"resolve-url-loader": "^1.6.0",
"sass-loader": "^4.0.2",
"source-map-support": "^0.4.2",
"source-mapper": "^2.0.0",
"style-loader": "^0.13.1",
"supports-color": "^3.1.2",
"webpack": "2.1.0-beta.21",
"webpack-bundle-update-hook-plugin": "^1.0.2",
"webpack-resolve-short-path-plugin": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-preset-es2015": "^6.13.2",
"bootstrap": "^3.3.7",
"chai": "^3.5.0",
"chai-files": "^1.4.0",
"eslint-config-jameslnewell": "^1.0.0-rc.9",
"sinon": "^1.17.5"
},
"bin": {
"tradie": "./dist/cli/index.js"
},
"scripts": {
"clean": "rm -rf ./dist",
"lint": "eslint src/**/*.js",
"build": "babel -s --out-dir ./dist/ src",
"watch": "npm run build -- --watch",
"test:unit": "mocha --require ./dist/_.test.js $(find ./dist -name '*.test.js')",
"test:acceptance": "mocha --compilers js:babel-register --require ./dist/_.test.js",
"test": "npm run test:unit && npm run test:acceptance",
"prepublish": "npm run lint && npm run clean && npm run build && npm run test"
},
"license": "MIT"
}