-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·64 lines (64 loc) · 1.39 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
{
"name": "clarion",
"version": "3.9.0",
"description": "A CSS and Design System Framework for rapidly building applications.",
"main": "index.js",
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.ts",
"update": "tsc && npm i -g",
"deploy": "tsc && npm publish"
},
"author": "Burton Smith <burton@breakstuff.io>",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.1",
"commander": "^2.16.0",
"inquirer": "^6.2.1"
},
"bin": {
"clarion": "./bin/clarion"
},
"install": "npm i -g clarion",
"repository": {
"type": "git",
"url": "https://github.com/break-stuff/clarion"
},
"homepage": "https://projectclarion.com",
"keywords": [
"clarion",
"css",
"css architecture",
"sass",
"sass architecture",
"scss",
"scss architecture",
"less",
"less architecture",
"design systems",
"design system framework",
"starter project",
"scaffolding",
"CLI",
"build",
"methodology",
"boilerplate",
"architecture",
"javascript",
"webpack",
"parcel",
"grunt",
"gulp"
],
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/chalk": "^0.4.31",
"@types/commander": "^2.12.2",
"@types/mocha": "^5.2.4",
"@types/node": "^8.10.20",
"chai": "^4.1.2",
"fsevents": "^2.0.6",
"mocha": "^7.1.2",
"ts-node": "^5.0.1",
"typescript": "^2.9.2"
}
}