forked from ambassify/paint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.64 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
{
"name": "paint",
"version": "0.0.1",
"description": "SASS build microservice",
"main": "src/index.js",
"scripts": {
"start": "node dist/index.js",
"postinstall": "npm run build",
"test": "npm run eslint && npm run mocha",
"dev": "npm run watch_eslint & npm run serve_dev",
"serve_dev": "nodemon src/index.js --exec babel-node -w src | bunyan",
"watch_eslint": "esw -w --fix src",
"build": "babel src -d dist",
"eslint": "eslint --fix src",
"mocha": "ENVIRONMENT=testing mocha --compilers js:babel-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bubobox/paint.git"
},
"keywords": [
"sass",
"build"
],
"author": "Ambassify",
"license": "MIT",
"bugs": {
"url": "https://github.com/bubobox/paint/issues"
},
"homepage": "https://github.com/bubobox/paint#readme",
"engines": {
"node": "9.x.x"
},
"dependencies": {
"@ambassify/bunyan-logger": "^3.0.8",
"@ambassify/load-env": "^1.1.1",
"autoprefixer": "^6.3.7",
"babel-cli": "^6.4.0",
"babel-preset-env": "^1.6.1",
"bunyan": "^1.5.1",
"dotenv": "^1.2.0",
"es6-error": "^2.0.2",
"express": "^4.13.3",
"file-type": "^3.4.0",
"lodash": "^3.10.1",
"node-sass": "^4.5.0",
"node-sass-globbing": "0.0.23",
"p-queue": "^3.0.0",
"postcss": "^5.0.21",
"pumpify": "^1.3.3",
"read-chunk": "^1.0.1",
"sass-module-importer": "^1.4.0",
"tar-fs": "^1.9.0",
"uuid": "^2.0.1"
},
"devDependencies": {
"babel-eslint": "^5.0.0-beta6",
"babel-register": "^6.3.13",
"eslint": "^1.10.3",
"mocha": "^2.3.4",
"nodemon": "^1.8.1"
}
}