-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.42 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
{
"name": "patchkit-stepped-progress-bar",
"version": "1.0.4",
"description": "React UI component for a progress bar with multiple steps",
"main": "index.jsx",
"dependencies": {
"classnames": "^2.2.3",
"react": "^0.14.6"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"less": "^2.5.3"
},
"scripts": {
"build": "npm run build-js & npm run build-css",
"build-js": "browserify ./index.jsx --extension=.jsx -o ./index.build.js -v",
"build-css": "lessc --verbose ./styles.less ./styles.build.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patchkit/patchkit-stepped-progress-bar.git"
},
"keywords": [
"react",
"ui",
"component",
"progress",
"bar"
],
"author": "Paul Frazee <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/patchkit/patchkit-stepped-progress-bar/issues"
},
"homepage": "https://github.com/patchkit/patchkit-stepped-progress-bar#readme",
"browserify": {
"transform": [
[
"envify",
{
"global": true
}
],
[
"babelify",
{
"presets": [
"es2015",
"stage-0",
"react"
]
}
]
]
}
}