-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.26 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
{
"name": "react-stepper-primitive",
"main": "dist/index.js",
"version": "1.1.0",
"description": "A React primitive for building a stepper component",
"scripts": {
"test": "standard --fix 'src/**/*.js' && jest",
"build": "babel ./src -d dist",
"prepublish": "npm -s run build"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"jest",
"test",
"expect",
"describe"
]
},
"license": "MIT",
"repository": "ajoslin/react-stepper-primitive",
"author": {
"name": "Andrew Joslin",
"email": "[email protected]",
"url": "ajoslin.com"
},
"keywords": [
"react",
"stepper-primitive",
"prop getters",
"render"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-standard": "^0.2.0",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"jest": "^21.1.0",
"jest-serializer-html": "^4.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"standard": "^10.0.3",
"tape": "^4.0.0"
},
"dependencies": {
"numeric-pattern": "^1.0.0",
"prop-types": "^15.5.10"
}
}