-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.92 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
{
"name": "react-stikky",
"version": "0.1.30",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": " cross-env NODE_ENV=test ava",
"build": "babel src --out-dir lib",
"precommit": "npm run build && lint-staged && git add -A"
},
"repository": {
"type": "git",
"url": "git+https://github.com/janryWang/react-propers.git"
},
"author": "janryWang",
"license": "MIT",
"bugs": {
"url": "https://github.com/janryWang/react-propers/issues"
},
"homepage": "https://github.com/janryWang/react-propers#readme",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/preset-react": "^7.0.0-beta.46",
"@babel/register": "^7.0.0-beta.46",
"ava": "^1.0.0-beta.4",
"cross-env": "^5.1.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"prettier": "^1.11.x",
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"lint-staged": {
"src/*.js": [
"prettier --write --tab-width 4 --no-semi",
"git add"
],
"dist/*.js": [
"prettier --write --tab-width 4 --no-semi",
"git add"
],
"test.js": [
"prettier --write --tab-width 4 --no-semi",
"git add"
]
},
"ava": {
"require": [
"@babel/register"
],
"files": [
"test/**/*.spec.js",
"test/*.spec.js"
],
"babel": {
"testOptions": {
"babelrc": false,
"presets": [
[
"@babel/preset-env",
{
"loose": true
}
],
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}
},
"dependencies": {
"classnames": "^2.2.6",
"window-scroll": "^1.0.0"
}
}