-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.35 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
{
"name": "nx-loading",
"version": "1.0.1",
"description": "neixin loading component",
"author": "ximing",
"main": "./dist/index.js",
"scripts": {
"i": "SASS_BINARY_SITE=https://npm.taobao.org/mirrors/node-sass/ yarn install --registry=https://registry.npm.taobao.org",
"dev": "./node_modules/.bin/webpack-dev-server ",
"prepublish": "npm run build",
"builddemo": "webpack --config webpack.build.demo.config.js",
"buildlib": "webpack --config webpack.build.lib.config.js",
"build": "rimraf dist && rsync -va -progress src/* ./dist && babel src --out-dir dist"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4",
"autoprefixer": "6.x",
"babel-core": "6.x",
"babel-eslint": "6.x",
"babel-loader": "6.x",
"babel-plugin-import": "^1.0.1",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-export-extensions": "^6.x",
"babel-plugin-transform-regenerator": "^6.x",
"babel-plugin-transform-runtime": "^6.x",
"babel-polyfill": "6.x",
"babel-preset-es2015": "6.x",
"babel-preset-react": "6.x",
"babel-preset-stage-0": "6.x",
"babel-runtime": "6.x",
"css-loader": "^0.23.1",
"eslint": "^3.13.1",
"eslint-plugin-react": "^6.x",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.2.0",
"postcss": "^5.2.10",
"postcss-clearfix": "^1.0.0",
"postcss-loader": "^1.2.2",
"postcss-position": "^0.5.0",
"postcss-size": "^1.1.1",
"rabjs": "^3.x",
"react-hot-loader": "^3.0.0-beta.6",
"rimraf": "^2.6.1",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "2.x",
"webpack-dev-server": "2.x"
},
"jest": {
"transform": {},
"testRegex": "(/__tests__/.*|/(test|spec)/.*).(js)$",
"moduleFileExtensions": [
"js",
"json"
]
},
"engines": {
"node": ">= 5.0.0",
"npm": ">= 3.0.0"
},
"dependencies": {
},
"files": [
"src",
"dist",
"demo"
]
}