-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.82 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.82 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
68
69
70
71
72
73
74
75
76
77
{
"name": "americons",
"version": "1.7.0",
"description": "SVGs and Icon Font for the geographic boundaries of the United States",
"scripts": {
"symbols": "node tools/makeSymbols.js",
"prefonts": "npm run symbols",
"fonts": "node tools/makeFonts.js",
"postfonts": "npm run fonts:sass",
"prefonts:sass": "sass-lint -c .sass-lint.yml -v",
"fonts:sass": "node-sass --source-map true --include-path sass sass/americons.scss css/americons.css",
"postfonts:sass": "postcss -c postcss.config.json",
"jekyll": "jekyll build --incremental --source docs --destination build",
"lint:sass": "sass-lint -c .sass-lint.yml -v",
"presass": "npm-run-all lint:sass",
"sass": "node-sass --source-map true --include-path docs/sass --include-path node_modules docs/sass/main.scss docs/styles/bundle.css",
"postsass": "postcss -c docs/postcss.config.json",
"js": "webpack -d --progress --colors",
"watch": "npm-run-all --parallel watch:jekyll watch:sass watch:js",
"watch:jekyll": "nodemon -w docs -e html,md,png,jpg,gif,svg,yml,xml,js,css,yml --ignore docs/sass --ignore docs/javascript -x \"npm run jekyll\"",
"watch:js": "nodemon -w docs/javascript -e js -x \"npm run js\"",
"watch:sass": "nodemon -e scss -w docs/sass -x \"npm run sass\"",
"server:dev": "babel-node tools/runBrowserSync.js",
"copy:americons": "babel-node tools/copyFonts.js",
"prebuild:site": "rimraf build",
"build:site": "npm-run-all copy:americons sass js jekyll",
"clean:build": "rimraf build",
"prestart": "npm-run-all clean:build copy:americons sass js jekyll",
"start": "npm-run-all --parallel server:dev watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bowmanmc/americons.git"
},
"author": "Michael Bowman",
"license": "MIT",
"bugs": {
"url": "https://github.com/bowmanmc/americons/issues"
},
"homepage": "http://americons.us",
"dependencies": {},
"devDependencies": {
"archiver": "^1.3.0",
"autoprefixer": "^6.6.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"bluebird": "^3.4.6",
"browser-sync": "^2.18.5",
"copy-dir": "^0.3.0",
"cssnano": "^3.9.1",
"ejs": "^2.5.5",
"filesize": "^3.3.0",
"glob": "^7.1.1",
"gulp": "^3.9.1",
"gulp-iconfont": "^8.0.1",
"gulp-iconfont-css": "^2.1.0",
"gulp-rename": "^1.2.2",
"jsdom": "^9.8.3",
"mkdirp": "^0.5.1",
"moment": "^2.17.1",
"node-sass": "^4.1.1",
"nodemon": "^1.11.0",
"normalize.css": "^5.0.0",
"npm-run-all": "^3.1.2",
"postcss-cli": "^2.6.0",
"prismjs": "^1.6.0",
"rimraf": "^2.5.4",
"sass-lint": "^1.10.2",
"shapefile": "^0.5.9",
"svgo": "^0.7.1",
"sync-exec": "^0.6.2",
"unzip": "^0.1.11",
"webpack": "^1.14.0"
}
}