-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
75 lines (75 loc) · 2.23 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
{
"name": "uskin",
"description": "A graceful framework which provides developers another chance to build an amazing site.",
"version": "0.5.0",
"keywords": [
"css",
"less",
"react",
"babel",
"front-end",
"framework"
],
"homepage": "https://github.com/icecreamliker/uskin",
"author": "Lee Yao <yaoli111144@gmail.com>",
"main": "index.js",
"scripts": {
"build": "grunt build",
"release": "grunt release",
"prepublish": "grunt build",
"test": "jest --config ./jest.config.json",
"test-dev": "jest --config ./jest.config.json --watch",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"eslint": "eslint *.js __tests__/ js/** docs/react_demos/** --ext .js,.jsx --cache",
"dev": "rm -rf dist && webpack --config dev.webpack.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/icecreamliker/uskin.git"
},
"bugs": {
"url": "https://github.com/icecreamliker/uskin/issues"
},
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.1.12",
"babel-eslint": "^7.1.1",
"babel-jest": "^17.0.2",
"babel-loader": "^6.3.2",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.1.4",
"babel-preset-react": "^6.1.4",
"babel-runtime": "^6.23.0",
"coveralls": "^2.11.15",
"css-loader": "^0.26.0",
"enzyme": "^2.6.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.10.1",
"grunt": "^1.0.1",
"grunt-banner": "^0.6.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-webfont": "^1.6.0",
"grunt-webpack": "^2.0.1",
"jest-cli": "^17.0.3",
"less": "^2.5.3",
"less-loader": "^2.2.3",
"lesslint": "^1.0.2",
"load-grunt-tasks": "^3.3.0",
"postcss-loader": "^1.3.2",
"react": "^15.4.0",
"react-addons-test-utils": "^15.4.0",
"react-dom": "^15.4.0",
"time-grunt": "^1.2.1",
"url-loader": "^0.5.8",
"webpack": "^2.3.1",
"webpack-dev-server": "^2.4.1"
}
}