-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "movielens",
"version": "0.3.0",
"description": "Promise based Node API for the movielens unpublished API",
"main": "dist/index.js",
"repository": "[email protected]:longseespace/movielens.git",
"author": "Long Nguyen <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rimraf dist",
"build": "babel src -d dist",
"prepublish": "npm run build",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"sanity_test": "node tests/sanity.js",
"jest": "jest",
"test": "jest && yarn sanity_test"
},
"dependencies": {
"axios": "^0.18.0"
},
"devDependencies": {
"babel-cli": "6.22.2",
"babel-eslint": "6.1.2",
"babel-plugin-transform-object-rest-spread": "6.22.0",
"babel-preset-env": "1.1.8",
"eslint": "2.13.1",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.12.0",
"eslint-plugin-jsx-a11y": "1.5.5",
"eslint-plugin-react": "5.2.2",
"jest": "^23.6.0",
"rimraf": "2.5.4"
},
"jest": {
"roots": [
"./tests"
],
"testEnvironment": "node",
"collectCoverage": false,
"coverageDirectory": "coverage",
"moduleFileExtensions": [
"js",
"json",
"es6"
]
}
}