-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.63 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.63 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
{
"name": "progress-tracker",
"homepage": "https://nigelotoole.github.io/progress-tracker/",
"author": "Nigel O Toole <pure@purestructure.com> (http://www.purestructure.com)",
"description": "Illustrate the steps in a multi step process like a form or a timeline.",
"keywords": [
"progress",
"tracker",
"multi",
"step",
"multi-step",
"stage",
"multi-stage",
"stepper",
"javascript"
],
"version": "3.1.0",
"license": "MIT",
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NigelOToole/progress-tracker.git"
},
"bugs": {
"url": "https://github.com/NigelOToole/progress-tracker/issues"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@11ty/eleventy-dev-server": "^2.0.6",
"concurrently": "^8.2.1",
"cross-env": "^7.0.3",
"postcss": "^8.5.0",
"postcss-cli": "^10.1.0",
"postcss-custom-media": "^10.0.2",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^9.1.4",
"rimraf": "^5.0.5"
},
"scripts": {
"clean": "rimraf src/**/*.map",
"dev": "cross-env NODE_ENV=development && concurrently \"npm:dev:*\"",
"dev:server": "npx @11ty/eleventy-dev-server --dir=src",
"dev:styles": "postcss src/styles/site/main.css src/styles/progress-tracker/progress-tracker.css --dir src/styles --watch",
"build": "npm run clean && cross-env NODE_ENV=production concurrently \"npm:build:*\"",
"build:styles": "postcss src/styles/site/main.css src/styles/progress-tracker/progress-tracker.css --dir src/styles",
"publish:npm": "npm run build && npm publish --access public"
}
}