forked from US-CBP/cbp-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 2.87 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
{
"name": "cbp-theme",
"description": "CBP Common Framework UI Theme",
"version": "1.3.2",
"author": "CBP Common Framework",
"main": "./dist/js/npm",
"contributors": [
{
"name": "Kianoosh Raika",
"email": "[email protected]"
},
{
"name": "Amit Daya",
"email": "[email protected]"
},
{
"name": "David Y. Hodge",
"email": "[email protected]"
},
{
"name": "Abhinav Pobbati",
"email": "[email protected]"
}
],
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "https://github.com/US-CBP/cbp-theme"
},
"engines": {
"node": ">= 4.2.2"
},
"devDependencies": {
"autoprefixer": "6.4.1",
"babel-cli": "^6.1.4",
"babel-core": "^6.1.4",
"babel-eslint": "^4.1.7",
"babel-loader": "^6.1.0",
"babel-plugin-transform-es2015-modules-umd": "^6.1.4",
"babel-preset-es2015": "^6.1.4",
"babel-preset-react": "^6.5.0",
"bootstrap": "^3.3.6",
"change-case": "^3.0.0",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.22.0",
"eslint": "^1.9.0",
"eslint-loader": "^1.1.1",
"expose-loader": "0.7.1",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "0.8.5",
"html-loader": "^0.4.3",
"html-webpack-plugin": "2.22.0",
"immutable": "^3.8.1",
"jest": "16.0.1",
"json-loader": "^0.5.4",
"node-sass": "^3.4.2",
"nouislider": "~8.5.1",
"postcss-import": "8.1.2",
"postcss-loader": "0.13.0",
"sass-loader": "3.2.3",
"select2": "^4.0.3",
"selectize": "^0.12.1",
"strip-loader": "^0.1.0",
"style-loader": "^0.13.0",
"url-loader": "0.5.7",
"webfont-dl": "^0.1.2",
"webpack": "^1.12.3",
"webpack-dev-server": "1.16.1"
},
"optionalDependencies": {
"jquery.inputmask": "3.3.3"
},
"scripts": {
"clean": "rm -rf ./dist && rm -rf ./app/kitchensink/dist",
"lint": "eslint --ignore-pattern ./app/**/app-*.js --ext .js js/**",
"build": "webpack --bail && npm run test",
"serve": "webpack-dev-server --host=0.0.0.0 --port=8888 --content-base",
"dev": "npm run clean && npm run build && npm run serve",
"test": "jest",
"a11y": "pa11y --standard Section508 --reporter html > a11y.html https://localhost:9000 || true",
"preversion": "npm test",
"version": "npm run build && git add -A .",
"postversion": "git push && git push --tags"
},
"keywords": [
"CBP",
"CF",
"Common",
"Frameworks",
"Team",
"UI"
],
"files": [
"dist"
],
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"browser": true
},
"rules": {
"quotes": [
2,
"single"
]
}
},
"dependencies": {
"material-design-lite": "^1.1.1",
"mdl-selectfield": "^1.0.2",
"bootstrap-sass": "^3.3.6",
"font-awesome": "^4.6.3",
"roboto-fontface": "0.8.0"
}
}