-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.54 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.54 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "ticketfly-css",
"version": "0.4.5",
"description": "Ticketfly's CSS framework",
"main": "index.js",
"style": "src/index.css",
"keywords": [
"css",
"ticketfly css",
"css framework",
"composable css",
"functional css",
"modular css",
"responsive css",
"lightweight css",
"ember-addon"
],
"repository": {
"url": "https://github.com/Ticketfly-UI/ticketfly-css.git",
"type": "git"
},
"files": [
"addon/",
"app/",
"build/",
"config/environment.js",
"index.js",
"src/index.css"
],
"bugs": {
"url": "https://github.com/Ticketfly-UI/ticketfly-css/issues"
},
"homepage": "https://github.com/Ticketfly-UI/ticketfly-css",
"author": "Brian Sipple <@Brian_Sipple>",
"license": "MIT",
"directories": {
"doc": "docs",
"test": "tests"
},
"engines": {
"node": ">=6.x"
},
"dependencies": {
"broccoli-funnel": "^1.1.0",
"broccoli-merge-trees": "^1.2.1",
"broccoli-postcss-single": "^1.2.1",
"postcss-cssnext": "^2.9.0",
"postcss-import": "^9.1.0",
"ticketfly-css-box-objects": "^0.1.1",
"ticketfly-css-box-shadow-garnishes": "^0.0.1",
"ticketfly-css-box-shadow-variables": "^0.0.2",
"ticketfly-css-color-garnishes": "^0.0.1",
"ticketfly-css-color-variables": "^0.0.1",
"ticketfly-css-core-variables": "^0.0.1",
"ticketfly-css-display-utilities": "^0.0.1",
"ticketfly-css-flex-utilities": "^0.0.1",
"ticketfly-css-grid-objects": "^0.1.1",
"ticketfly-css-normalize": "^0.1.0",
"ticketfly-css-overflow-utilities": "^0.0.1",
"ticketfly-css-position-utilities": "^0.1.0",
"ticketfly-css-reset-garnishes": "^0.2.0",
"ticketfly-css-sizing-utilities": "^0.0.1",
"ticketfly-css-spacing-utilities": "^0.1.0",
"ticketfly-css-spacing-variables": "^0.1.0",
"ticketfly-css-tap-target-objects": "^0.0.1",
"ticketfly-css-text-utilities": "^0.0.1",
"ticketfly-css-typography-garnishes": "^0.1.0",
"ticketfly-css-typography-variables": "^0.2.0",
"ticketfly-css-v-align-utilities": "^0.1.0",
"ticketfly-css-z-index-utilities": "^0.0.1"
},
"devDependencies": {
"broccoli-asset-rev": "^2.4.5",
"chai": "^3.5.0",
"cssnano": "^3.9.1",
"cssstats": "^3.0.0",
"del-cli": "^0.2.1",
"ember-ajax": "^2.4.1",
"ember-cli": "2.10.0",
"ember-cli-app-version": "^2.0.0",
"ember-cli-babel": "^5.1.7",
"ember-cli-dependency-checker": "^1.3.0",
"ember-cli-eslint": "3.0.0",
"ember-cli-htmlbars": "^1.0.10",
"ember-cli-htmlbars-inline-precompile": "^0.3.3",
"ember-cli-inject-live-reload": "^1.4.1",
"ember-cli-postcss": "^3.1.1",
"ember-cli-qunit": "^3.0.1",
"ember-cli-release": "^0.2.9",
"ember-cli-sri": "^2.1.0",
"ember-cli-test-loader": "^1.1.0",
"ember-cli-uglify": "^1.2.0",
"ember-data": "^2.10.0",
"ember-disable-prototype-extensions": "^1.1.0",
"ember-export-application-global": "^1.0.5",
"ember-hook": "1.4.1",
"ember-load-initializers": "^0.5.1",
"ember-resolver": "^2.0.3",
"eslint-config-ticketfly-base": "^1.2.0",
"loader.js": "^4.0.10",
"mocha": "^3.2.0",
"postcss-cli": "^2.6.0",
"postcss-custom-properties": "^5.0.1",
"postcss-discard-comments": "^2.0.4",
"postcss-importantly": "^0.0.7",
"postcss-reporter": "^3.0.0",
"stylelint": "^7.7.0",
"stylelint-config-ticketfly": "^0.1.0"
},
"scripts": {
"clean": "del build/**",
"setup": "mkdir -p build",
"transform": "postcss -c postcss.config.js",
"transform:watch": "postcss -c postcss.config.js -w",
"minify": "postcss -u cssnano build/ticketfly-css.css -o build/ticketfly-css.min.css",
"important": "postcss -u postcss-importantly build/ticketfly-css.css -o build/ticketfly-css-important.css",
"important:min": "postcss -u postcss-importantly -u cssnano build/ticketfly-css.css -o build/ticketfly-css-important.min.css",
"custom-props": "postcss -u postcss-import src/index.css -o build/ticketfly-css-cp.css",
"custom-props:min": "postcss -u postcss-import -u cssnano src/index.css -o build/ticketfly-css-cp.min.css",
"build:dist": "npm run clean && npm run setup && npm run transform",
"build:dist:min": "npm run build:dist && npm run minify",
"test:ember": "ember test",
"test:node": "mocha node-tests/**/*-test.js",
"test": "ember try:each && npm run test:node",
"prepublish": "npm run build:dist && npm run important && npm run custom-props && npm run minify && npm run important:min && npm run custom-props:min"
},
"ember-addon": {
"configPath": "tests/dummy/config"
}
}