-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "pointer.js",
"version": "0.1.1-beta",
"description": "A lightweight library to create checkpoints across a page.",
"main": "dist/umd/pointer.js",
"scripts": {
"test": "npm run lint && npm run build && ava test/test.js",
"lint": "eslint .",
"build": "rollup -c rollup.config.js"
},
"author": "Anthony Gonzales <[email protected]>",
"license": "MIT",
"devDependencies": {
"ava": "^0.24.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.13.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jsdom": "^11.5.1",
"rollup": "^0.52.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-node-resolve": "^3.0.0",
"sinon": "^4.1.3"
},
"dependencies": {
"intersection-observer": "^0.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com:antgonzales/pointer.js.git"
},
"ava": {
"require": [
"babel-register"
]
}
}