forked from NewDadaFE/react-impression
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2 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
{
"name": "react-impression",
"version": "1.0.6",
"author": "peter.shenlq",
"description": "An enterprise-class UI design language and React-based implementation.",
"main": "./lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/shenlq/impression.git"
},
"scripts": {
"eslint": "eslint ./src/scripts/",
"pre-commit": "eslint",
"scsslint": "scss-lint src/styles/**/*.scss",
"clean": "rimraf ./lib && mkdir lib",
"copy": "cp -a src/styles lib/styles",
"compile:js": "node_modules/babel-cli/bin/babel.js src/scripts --out-dir lib",
"compile:scss": "sass src/styles/index.scss lib/index.css",
"compile:minscss": "sass --style compressed src/styles/index.scss lib/index.min.css",
"prebuild": "npm run eslint && npm run scsslint && npm run clean",
"build": "npm run compile:js && npm run compile:scss && npm run compile:minscss",
"postbuild": "npm run copy && npm publish"
},
"homepage": "https://github.com/shenlq/impression",
"dependencies": {
"classnames": "^2.2.0",
"moment": "^2.14.1",
"perfect-scrollbar": "^0.6.12"
},
"peerDependencies": {
"react": "^15.3.1",
"react-addons-css-transition-group": "^15.3.1",
"react-dom": "^15.3.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-class-properties": "^6.8.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.11.6",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-config-impression": "^1.0.5",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-flow-vars": "^0.3.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"pre-commit": "^1.1.3"
}
}