This repository was archived by the owner on Jan 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.81 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.81 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
{
"name": "firefly-pattern-library",
"version": "1.0.0",
"description": "Node xslt compilation test",
"main": "index.js",
"scripts": {
"lint": "eslint blocks/core/**/*.js",
"build": "yarn install && gulp build",
"start": "yarn install && gulp",
"serve": "gulp serve",
"export": "gulp export",
"icons": "gulp icons",
"clean": "gulp clean",
"test": "yarn run lint && mocha tests/*.test.js --compilers jsx:babel-register,js:babel-register --require tests/lib/utils.js",
"test-no-lint": "mocha tests/*.test.js --compilers jsx:babel-register,js:babel-register --require tests/lib/utils.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fireflylearning/pattern-library.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"async": "^1.5.2",
"bluebird": "^3.2.1",
"browser-sync": "^2.11.1",
"del": "^2.2.0",
"eslint": "^2.8.0",
"findit2": "^2.2.3",
"glob": "^7.0.0",
"gray-matter": "^2.0.2",
"gulp": "^3.9.0",
"gulp-apply-template": "0.0.2",
"gulp-cached": "^1.1.0",
"gulp-changed": "^1.3.0",
"gulp-clean-css": "^2.0.4",
"gulp-concat": "^2.6.0",
"gulp-data": "^1.2.1",
"gulp-debug": "^2.1.2",
"gulp-folders": "^1.1.0",
"gulp-front-matter": "^1.3.0",
"gulp-less": "^3.0.5",
"gulp-load-plugins": "^1.2.0",
"gulp-markdown": "^1.2.0",
"gulp-plumber": "^1.0.1",
"gulp-remember": "^0.3.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-size": "^2.0.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-svg-sprite": "^1.3.6",
"gulp-svgmin": "^1.2.1",
"gulp-tap": "^0.1.3",
"gulp-util": "^3.0.7",
"gulp-wrap": "^0.11.0",
"gulpicon": "^0.1.2",
"lazypipe": "^1.0.1",
"less-plugin-autoprefix": "^1.5.1",
"libxslt": "^0.6.3",
"lodash": "~4.16.6",
"marked": "^0.3.5",
"minimist": "^1.2.0",
"node-dir": "^0.1.11",
"redux": "3.2.1",
"redux-thunk": "^2.1.0",
"swig": "^1.4.2",
"through2": "^2.0.0",
"webpack": "^1.12.14"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.5",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"jquery": "^2.2.1",
"jsdom": "^8.0.2",
"mocha": "^2.4.5",
"sinon": "^1.17.3"
},
"browserify": {
"transform": [
"babelify",
"brfs"
]
},
"browserify-shim": {
"jquery": "global:jQuery",
"react": "global:React",
"react-dom": "global:ReactDOM",
"react-addons-transition-group": "global:React.addons.TransitionGroup",
"react-addons-css-transition-group": "global:React.addons.CSSTransitionGroup",
"redux": "global:Redux",
"react-redux": "global:ReactRedux",
"underscore": "global:_"
}
}