-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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": "remote-data-js",
"version": "0.2.1",
"description": "",
"main": "lib/index.js",
"scripts": {
"build-cjs": "babel src -d lib",
"prepack": "npm run build-cjs",
"jest": "jest",
"test": "npm run lint && npm run jest",
"watch": "npm run jest --watch",
"lint": "eslint src/*.js __tests__/*.js",
"lint-fix": "npm run lint -- --fix"
},
"keywords": [],
"author": "Jack Franklin",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.9.0",
"babel-core": "^6.6.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^22.0.1",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "6.9.0",
"eslint": "^4.11.0",
"eslint-config-prettier": "^2.7.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-unobtrusive": "^1.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"fetch-mock": "4.5.4",
"jest": "^21.2.1",
"prettier": "^1.8.2",
"webpack-notifier": "1.3.0"
}
}