-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "mfp",
"version": "1.0.0",
"description": "Mazes for programmers",
"private": true,
"scripts": {
"css-deploy": "npm run css-build && npm run css-postcss",
"css-build": "node-sass src/sass/main.scss dist/css/main.css",
"css-postcss": "postcss --use autoprefixer --output css/main.css css/main.css",
"css-watch": "npm run css-build -- --watch",
"deploy": "npm run css-deploy && npm run js-build",
"js-build": "babel src/js --out-dir dist/js",
"js-watch": "npm run js-build -- --watch",
"start": "webpack && npm run css-build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caleywoods/mfp.git"
},
"keywords": [
"maze",
"puzzle",
"algorithm"
],
"author": "caleywoods",
"license": "ISC",
"bugs": {
"url": "https://github.com/caleywoods/mfp/issues"
},
"homepage": "https://github.com/caleywoods/mfp#readme",
"dependencies": {},
"devDependencies": {
"autoprefixer": "^9.7.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015-ie": "^6.7.0",
"bulma": "^0.8.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
}
}