-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.75 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "tide-fire",
"description": "A plugin for tide that fires action",
"version": "2.0.0",
"author": "Tictail",
"main": "lib/index.js",
"dependencies": {
"babel-eslint": "^7.1.1",
"immutable": "^3.8.1",
"react": "^15.4.2",
"tide": "~2.0.0"
},
"devDependencies": {
"ava": "^0.18.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.22.1",
"babel-loader": "~6.2.10",
"babel-plugin-syntax-object-rest-spread": "~6.13.0",
"babel-plugin-transform-object-rest-spread": "~6.22.0",
"babel-plugin-transform-proto-to-assign": "~6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "~6.22.0",
"eslint": "3.15.0",
"eslint-config-standard": "6.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-ava": "^4.2.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-promise": "3.4.1",
"eslint-plugin-standard": "2.0.1",
"sinon": "~1.17.7"
},
"engines": {
"node": ">=6.1.0",
"npm": ">=3.8.6"
},
"homepage": "https://github.com/tictail/tide-fire",
"keywords": [
"tide",
"fire",
"javascript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tictail/tide-fire"
},
"bugs": {
"url": "https://github.com/tictail/tide-fire/issues"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit",
"files": [
"test/{,**/,**/**/,}*_spec.js"
]
},
"scripts": {
"build": "rm -rf lib && mkdir lib && ./node_modules/.bin/babel src/index.js -o lib/index.js",
"preversion": "npm run build",
"test": "NODE_ENV=test ava",
"lint": "eslint ./ --max-warnings 0 --ext .jsx,.js",
"watch": "NODE_ENV=test ava --watch"
}
}