-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.57 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
62
63
{
"name": "react-accelerometer",
"version": "1.0.1",
"main": "dist/react-accelerometer.js",
"module": "dist/react-accelerometer.module.js",
"jsnext:main": "dist/react-accelerometer.module.js",
"description": "Uses the device's Accelerometer as a React Component",
"author": "Lucas Motta <mail@lucasmotta.com> (lucasmotta.com)",
"repository": {
"type": "git",
"url": "https://github.com/lucasmotta/react-accelerometer"
},
"bugs": {
"url": "https://github.com/lucasmotta/react-accelerometer/issues"
},
"license": "MIT",
"keywords": [
"react",
"accelerometer",
"devicemotion",
"gyroscope"
],
"scripts": {
"start": "http-server ./demo",
"build": "rollup -c",
"lint": "standard src/*.js",
"pretest": "npm run lint",
"test": "mocha src/*.test.js --compilers js:buble/register --require test.config.js",
"release": "release-it"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"http-server": "^0.9.0"
},
"devDependencies": {
"buble": "^0.15.2",
"enzyme": "^2.7.1",
"jsdom": "^9.9.1",
"mocha": "^3.2.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"rollup": "^0.41.4",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-watch": "^3.2.2",
"sinon": "^1.17.7",
"standard": "^8.6.0"
},
"standard": {
"globals": [
"describe",
"it",
"after",
"afterEach",
"before",
"beforeEach"
]
}
}