-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.39 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.39 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
{
"name": "seven-segment-display",
"version": "0.2.0",
"description": "A React widget that is a 7 segment display",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/stejsoftware/seven-segment-display"
},
"files": [
"src/",
"lib/",
"7-seg-display.js"
],
"scripts": {
"build:node": "babel src --out-dir lib --source-maps inline",
"watch": "npm-run-all --parallel watch:*",
"watch:node": "onchange 'src/**/*.jsx' -i -- npm run build:node",
"test": "eslint src",
"umd": "rimraf 7-seg-display.js && webpack --config umd.webpack.js",
"build": "npm-run-all build:*",
"prepare": "npm run build && npm run umd"
},
"keywords": [
"seven",
"7",
"segment",
"display",
"react",
"widget",
"svg"
],
"author": "Jonathan Meyer <jon@stej.com>",
"license": "ISC",
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"peerDependencies": {
"react": "^15.x.x"
},
"devDependencies": {
"rimraf": "^2.6.1",
"http-server": "^0.10.0",
"webpack": "^3.5.5",
"babel-cli": "6.14.0",
"babel-eslint": "6.1.2",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-2": "6.13.0",
"eslint": "^4.1.1",
"npm-run-all": "^3.1.1"
},
"babel": {
"presets": [
"es2015",
"stage-2",
"react"
]
}
}