-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.3 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
76
77
78
79
80
81
82
83
84
{
"name": "react-onboarder",
"version": "0.1.0",
"description": "A tool to onboard your users to new features.",
"main": "./lib/index.js",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:umd": "cross-env BABEL_ENV=rollup NODE_ENV=development rollup -c -o dist/react-onboarder.js",
"build:umd:min": "cross-env BABEL_ENV=rollup NODE_ENV=production rollup -c -o dist/react-onboarder.min.js",
"build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
"prepublish": "npm run clean && npm run build",
"clean": "rimraf lib dist",
"lint": "eslint src",
"test": "jest",
"dev-test": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/jamby/react-onboarder.git"
},
"author": "Jared Hamby <irjamby@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamby/react-onboarder/issues"
},
"keywords": [
"react",
"highlight",
"highlighter",
"onboard",
"onboarder",
"onboarding"
],
"peerDependencies": {
"react": "15.5.x",
"react-dom": "15.5.x"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.0.0",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-plugin-react": "^7.0.1",
"jest": "^20.0.4",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^2.0.0",
"rollup-watch": "^3.2.2",
"sinon": "^2.3.2"
},
"dependencies": {
"hex-rgb": "^1.0.0",
"zenscroll": "^4.0.0"
},
"jest": {
"testMatch": [
"<rootDir>/test/**/?(*.)(spec|test).js?(x)"
],
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest"
}
}
}