-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "devanilla",
"version": "1.0.0",
"description": "js helper library",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-preset-es2015": "^6.24.0",
"jest": "^19.0.2",
"watch": "^1.0.2",
"eslint": "~3.19.0",
"eslint-loader": "~1.7.1",
"eslint-config-airbnb": "~14.1.0",
"eslint-plugin-import": "~2.2.0",
"eslint-plugin-jsx-a11y": "~4.0.0",
"eslint-plugin-react": "~6.10.3",
"babel-eslint": "~7.2.2"
},
"main": "lib/main.js",
"scripts": {
"dev": "watch 'npm run babel' modules",
"babel": "babel --presets es2015 -d lib/ modules/",
"test": "jest",
"lint": "eslint modules/**",
"test:watch": "npm test -- --watch",
"prepublish": "npm run lint && npm run babel"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vrinceanuv/devanilla.git"
},
"keywords": [
"dom",
"devanilla"
],
"contributors": [
{
"name": "Valentin Vrinceanu",
"email": "[email protected]",
"url": "http://vrinceanu.com"
},
{
"name": "Simona-Ecaterina Serseniuc",
"email": "[email protected]"
}
],
"license": "MIT",
"url": "https://github.com/vrinceanuv/devanilla",
"bugs": {
"url": "https://github.com/vrinceanuv/devanilla/issues"
},
"homepage": "https://github.com/vrinceanuv/devanilla#readme"
}