-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "sos.js",
"version": "0.2.0",
"description": "JS lib (dependency free) to Stick elements On Scroll",
"main": "dist/index.js",
"author": {
"name" : "Rafael Verger",
"email" : "[email protected]",
"url" : "https://github.com/rafaelverger"
},
"scripts": {
"test": "npm run lint && npm run test:strict",
"lint": "eslint --ext .js test index.js",
"test:strict": "mocha test/unit.js",
"build": "babel index.js | babili > dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafaelverger/sos.js.git"
},
"keywords": [
"sticker",
"stick",
"element",
"javascript",
"vanilla"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rafaelverger/sos.js/issues"
},
"homepage": "https://github.com/rafaelverger/sos.js",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-preset-env": "^1.5.1",
"babili": "^0.1.1",
"chai": "3.5.0",
"dirty-chai": "1.2.2",
"eslint": "3.2.2",
"eslint-config-airbnb-base": "5.0.1",
"eslint-plugin-import": "1.13.0",
"jsdom": "9.4.2",
"mocha": "3.0.2",
"sinon": "1.17.5",
"sinon-chai": "2.8.0"
}
}