forked from salesforce-ux/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.56 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
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
{
"name": "design-system",
"version": "1.0.0",
"description": "Salesforce Lightning Design System",
"license": "SEE LICENSE IN README.md",
"repository": {
"type": "git",
"url": "[email protected]:salesforce-ux/design-system.git"
},
"author": "Salesforce",
"engines": {
"node": ">=0.12",
"npm": ">=2.7.0"
},
"scripts": {
"postinstall": "babel-node scripts/npm/postinstall.js",
"pretest": "npm run gulp -- build:test",
"test": "npm run test-unit && npm run test-browser && npm run test-integration",
"test-unit": "mocha --compilers js:babel-register --require scripts/helpers/setup.js --reporter min 'test/unit/**/*.js'",
"test-browser": "karma start",
"test-integration": "mocha --compilers js:babel-register --require scripts/helpers/setup.js --reporter min 'test/integration/**/*.js'",
"start": "npm run gulp",
"build": "npm run gulp -- build",
"build-prod": "npm run gulp -- build",
"dist": "babel-node scripts/dist.js",
"dist-npm": "babel-node scripts/dist.js --npm",
"lint": "npm run gulp -- lint",
"install-ruby-dependencies": "babel-node scripts/install-ruby-dependencies.js",
"gulp": "gulp"
},
"dependencies": {
"@salesforce-ux/design-tokens": "2.0.5",
"@salesforce-ux/icons": "3.4.0",
"app-module-path": "1.0.5",
"async": "1.5.2",
"autoprefixer": "6.3.3",
"babel-cli": "6.6.0",
"babel-core": "6.6.0",
"babel-loader": "6.2.1",
"babel-plugin-transform-runtime": "6.6.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-register": "6.6.0",
"babel-runtime": "6.6.1",
"browser-sync": "2.10.1",
"bundle-loader": "0.5.4",
"cheerio": "0.20.0",
"classnames": "2.2.3",
"colors": "1.1.2",
"del": "2.2.0",
"eslint": "2.1.0",
"eslint-path-formatter": "git://github.com/kaelig/eslint-path-formatter.git#master",
"express": "4.13.4",
"fastdom": "1.0.0",
"fs-extra": "0.26.5",
"gator": "1.2.4",
"glob": "7.0.0",
"gulp": "3.9.1",
"gulp-autoprefixer": "3.1.0",
"gulp-cached": "1.1.0",
"gulp-debug": "2.1.2",
"gulp-eslint": "2.0.0",
"gulp-filter": "4.0.0",
"gulp-if": "2.0.0",
"gulp-ignore": "2.0.1",
"gulp-insert": "0.5.0",
"gulp-lintspaces": "0.4.1",
"gulp-minify-css": "1.2.2",
"gulp-plumber": "1.0.1",
"gulp-postcss": "6.0.1",
"gulp-rem2px": "0.0.1",
"gulp-rename": "1.2.2",
"gulp-replace": "0.5.4",
"gulp-sass": "2.1.1",
"gulp-scss-lint": "0.3.9",
"gulp-sourcemaps": "1.6.0",
"gulp-util": "3.0.7",
"gulp-zip": "3.2.0",
"invariant": "2.2.0",
"js-beautify": "1.6.2",
"js-yaml": "3.5.3",
"lodash": "4.5.1",
"markdown-it": "6.0.0",
"minimist": "1.2.0",
"moment": "2.11.2",
"nconf": "0.8.4",
"node-sass": "3.4.2",
"postcss": "5.0.18",
"pretty-time": "0.2.0",
"react": "0.14.7",
"react-addons-test-utils": "0.14.7",
"react-dom": "0.14.7",
"react-lorem-component": "aputinski/react-lorem-component",
"rimraf": "2.5.2",
"run-sequence": "1.1.5",
"semver": "5.1.0",
"stylestats": "6.2.0",
"superagent": "1.7.2",
"temp": "0.8.3",
"theo": "4.2.0",
"through2": "2.0.1",
"tinycolor2": "1.3.0",
"uuid": "2.0.1",
"webpack": "1.12.14",
"webpack-dev-middleware": "^1.5.1"
},
"devDependencies": {
"chai": "3.5.0",
"karma": "0.13.21",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "0.2.2",
"karma-mocha": "0.2.2",
"karma-spec-reporter": "0.0.24",
"karma-webpack": "1.7.0",
"mocha": "2.4.5",
"sinon": "1.17.3"
}
}