forked from pattern-lab/patternlab-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.81 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@pattern-lab/core",
"description": "Create atomic design systems with Pattern Lab. This is the core API and orchestrator of the ecosystem.",
"version": "3.0.1-alpha.0",
"main": "./src/index.js",
"dependencies": {
"cosmiconfig": "^5.2.0",
"@pattern-lab/engine-mustache": "^2.0.1-alpha.0",
"@pattern-lab/live-server": "^1.3.3-beta.1",
"chalk": "1.1.3",
"chokidar": "1.7.0",
"dive": "0.5.0",
"fs-extra": "5.0.0",
"glob": "7.0.0",
"graphlib": "2.1.1",
"js-beautify": "1.6.3",
"js-yaml": "3.6.1",
"lodash": "4.17.5",
"markdown-it": "6.0.1",
"node-fetch": "1.6.0",
"recursive-copy": "2.0.8",
"update-notifier": "2.2.0"
},
"devDependencies": {
"resolve-pkg": "^1.0.0",
"eslint": "4.18.2",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-prettier": "2.6.0",
"husky": "0.14.3",
"jsdoc-to-markdown": "3.0.0",
"prettier": "1.11.1",
"pretty-quick": "1.2.2",
"rewire": "2.5.2",
"standard-version": "4.3.0",
"tap": "11.1.1"
},
"keywords": [
"Pattern Lab",
"Atomic Web Design",
"Node",
"Grunt",
"Gulp",
"Javascript"
],
"repository": "https://github.com/pattern-lab/patternlab-node/tree/master/packages/core",
"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": {
"docs": "node ./scripts/docs.js",
"lint": "eslint src/**/*.js",
"pretest": "npm run lint",
"release": "standard-version",
"test": "tap test/*_tests.js --reporter spec --coverage"
},
"engines": {
"node": ">=10.0"
},
"publishConfig": {
"access": "public"
}
}