-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.88 KB
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": "progress.js",
"version": "1.1.3",
"description": "A simple but powerful progress indicator for web",
"main": "lib/progress.min.js",
"scripts": {
"bundle": "browserify src/loader.js -o lib/progress.bundle.js -t [ babelify --presets es2015 ] -s Progress -t browserify-css -d",
"uglify": "uglifyjs lib/progress.bundle.js -o lib/progress.min.js",
"test": "eslint src",
"serve": "browser-sync start -s demo -f demo --serveStatic ./ --reload-debounce 1000",
"watch:demo": "chokidar src/*.* -c \"npm run bundle\" -c \"npm run release\" -d 1000",
"start": "npm run bundle && concurrently \"npm run serve\" \"npm run watch:demo\"",
"release": "npm run uglify"
},
"keywords": ["progress bar", "progress indicator"],
"author": {
"name": "serenader2014",
"email": "xyslive@gmail.com"
},
"homepage": "https://github.com/serenader2014/progress.js",
"repository": {
"type": "git",
"url": "https://github.com/serenader2014/progress.js"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.13.2",
"babel-preset-es2015": "^6.13.2",
"babelify": "^7.3.0",
"browser-sync": "^2.14.0",
"browserify": "^13.1.0",
"browserify-css": "^0.9.1",
"chokidar-cli": "^1.2.0",
"concurrently": "^2.2.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0",
"uglify-js": "^2.7.0"
},
"babel": {
"presets": [
"es2015"
]
},
"eslintConfig": {
"extends": [
"airbnb"
],
"env": {
"browser": true
},
"rules": {
"semi": [
2,
"never"
],
"comma-dangle": [
"error",
"never"
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
]
}
}
}