-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.94 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
{
"name": "lin3s-front-foundation",
"version": "0.19.3",
"author": "LIN3S",
"license": "MIT",
"description": "Library that provides a sort of commonly used front-end components in LIN3S projects",
"keywords": [
"lin3s",
"front",
"foundation",
"es2015",
"js",
"scss"
],
"main": "dist/js/common/index.js",
"module": "dist/js/esm/index.js",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"phoenix": "rimraf node_modules && yarn install",
"prebuild": "rimraf dist",
"eslint": "node_modules/.bin/eslint src/js/**/*.js",
"stylelint": "node_modules/.bin/stylelint src/scss/**/*.scss",
"cs": "yarn eslint && yarn stylelint",
"common-bundle": "node_modules/.bin/babel --copy-files --out-dir dist/js/common src/js",
"esm-bundle": "cp -R src/js dist/js/esm",
"styles-bundle": "cp -R src/scss dist",
"build": "yarn prebuild && mkdirp dist && yarn cs && yarn styles-bundle && yarn common-bundle && yarn esm-bundle"
},
"babel": {
"presets": [
"es2015",
"stage-2",
"react"
],
"plugins": [
"transform-class-properties"
]
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.13.0",
"eslint": "^4.7.2",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-class-property": "^1.0.6",
"eslint-plugin-react": "^7.4.0",
"rimraf": "^2.5.4",
"stylelint": "^8.1.1",
"stylelint-order": "^0.7.0",
"stylelint-scss": "^2.1.0",
"stylelint-selector-bem-pattern": "^2.0.0",
"webpack": "^3.6.0"
},
"peerDependencies": {
"prop-types": ">=15.0",
"react": ">=15.0",
"react-dom": ">=15.0",
"validatory": "^0.2.5||^0.3.0"
},
"dependencies": {
"foes-scrollproxy": "^0.8.0",
"lin3s-event-bus": "^0.10.0"
}
}