forked from Pearson-Higher-Ed/elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.42 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
{
"name": "pearson-elements",
"version": "0.2.0",
"description": "CSS building blocks for Pearson web user experiences.",
"repository": {
"type": "git",
"url": "https://github.com/Pearson-Higher-Ed/elements.git"
},
"scripts": {
"start": "gulp",
"lint": "gulp lint",
"test": "npm run build && karma start karma.conf.js --singleRun",
"build": "gulp scss-to-json && gulp sass",
"build-docs": "gulp build-docs",
"gen-changelog": "node ./npm_scripts/gen-changelog.js",
"gh-pages": "node ./npm_scripts/gh-pages.js",
"ci": "npm test && npm run lint",
"deploy-ci": "./npm_scripts/deploy-ci.sh",
"deploy-wip": "node ./npm_scripts/deploy-wip.js",
"release": "node ./npm_scripts/release.js",
"version": "npm run gen-changelog && git add CHANGELOG.md"
},
"keywords": [
"pearson-components",
"pearson-sdk"
],
"author": "Pearson Design Accelerator",
"license": "MIT",
"engines": {
"node": "^4.0.0"
},
"devDependencies": {
"autoprefixer": "^6.1.0",
"babel-core": "~6.4.0",
"babel-eslint": "^4.1.7",
"babel-loader": "~6.2.1",
"babel-preset-es2015": "^6.3.13",
"browser-sync": "^2.10.0",
"conventional-changelog": "^0.5.1",
"cz-conventional-changelog": "^1.1.4",
"del": "^2.1.0",
"eslint": "^1.10.3",
"eslint-loader": "^1.2.1",
"gulp": "^3.9.0",
"gulp-cssnano": "^2.0.0",
"gulp-postcss": "^6.0.1",
"gulp-rename": "~1.2.2",
"gulp-sass": "^2.1.0",
"gulp-sass-lint": "^1.1.0",
"gulp-transform": "~1.0.1",
"highlight.js": "^8.9.1",
"karma": "^0.13.15",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai-plugins": "^0.6.1",
"karma-chrome-launcher": "^0.2.2",
"karma-firefox-launcher": "^0.1.7",
"karma-fixture": "^0.2.5",
"karma-html2js-preprocessor": "^0.1.0",
"karma-json-fixtures-preprocessor": "0.0.6",
"karma-mocha": "^0.2.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-webpack": "~1.7.0",
"markdown-it": "^5.0.2",
"metalsmith": "^2.1.0",
"metalsmith-in-place": "^1.3.2",
"metalsmith-layouts": "^1.4.2",
"metalsmith-metadata": "0.0.4",
"metalsmith-permalinks": "^0.4.0",
"metalsmith-register-helpers": "^0.1.2",
"mocha": "^2.3.4",
"phantomjs": "^1.9.19",
"semver": "^5.0.3",
"surge": "^0.17.3",
"webpack": "~1.12.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}