forked from pattern-lab/patternlab-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.95 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.95 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
{
"name": "@pattern-lab/patternlab-node",
"description":
"Pattern Lab is a collection of tools to help you create atomic design systems. This is the node command line interface (CLI).",
"version": "3.0.0-alpha.7",
"main": "./core/index.js",
"dependencies": {
"@pattern-lab/live-server": "^1.3.2",
"@pattern-lab/patternengine-node-mustache": "^2.0.0-alpha.2",
"chalk": "^1.1.3",
"chokidar": "^1.7.0",
"dive": "^0.5.0",
"fs-extra": "^0.30.0",
"glob": "^7.0.0",
"graphlib": "^2.1.1",
"js-beautify": "^1.6.3",
"js-yaml": "^3.6.1",
"lodash": "~4.13.1",
"markdown-it": "^6.0.1",
"node-fetch": "^1.6.0",
"recursive-copy": "^2.0.6",
"update-notifier": "^2.2.0"
},
"devDependencies": {
"@pattern-lab/patternengine-node-handlebars": "^2.0.0-alpha.2",
"@pattern-lab/patternengine-node-underscore": "^2.0.0-alpha.1",
"eslint": "3.5.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.5.0",
"husky": "^0.14.3",
"prettier": "1.10.2",
"pretty-quick": "^1.2.2",
"rewire": "2.5.2",
"standard-version": "^4.3.0",
"tap": "11.0.1"
},
"keywords": [
"Pattern Lab",
"Atomic Web Design",
"Node",
"Grunt",
"Gulp",
"Javascript"
],
"repository": {
"type": "git",
"url": "git://github.com/pattern-lab/patternlab-node.git"
},
"bugs": "https://github.com/pattern-lab/patternlab-node/issues",
"author": {
"name": "Brian Muenzenmeyer"
},
"contributors": [
{
"name": "Geoff Pursell"
},
{
"name": "Raphael Okon"
},
{
"name": "tburny"
}
],
"license": "MIT",
"scripts": {
"lint": "eslint core/**/*.js",
"precommit": "pretty-quick --staged",
"pretest": "npm run lint",
"prettier": "prettier --config .prettierrc --write ./core/**/*.js",
"release": "standard-version",
"test": "tap test/*_tests.js --reporter spec --coverage"
},
"engines": {
"node": ">=6.0"
}
}