-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.77 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.77 KB
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
{
"name": "reactmob-flux-standard",
"version": "0.0.1",
"description": "A ReactMob-friendly standard for Flux objects (RMSF)",
"author": "Ishmael Doss <liverbool@gmail.com>",
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"keywords": [
"reactmob",
"flux",
"redux",
"actions",
"fsa"
],
"scripts": {
"prebuild": "npm run clean",
"build": "babel src --out-dir lib --copy-files",
"clean": "rimraf lib/",
"lint": "eslint src/ test/",
"prepare": "npm test && npm run build",
"pretest": "npm run lint",
"test": "jest",
"posttest": "tsc"
},
"repository": {
"type": "git",
"url": "git://github.com/reactmob/flux-standard.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"conventional-github-releaser": "^1.1.12",
"coveralls": "^2.13.1",
"dotenv": "^4.0.0",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-typescript": "^0.5.0",
"jest": "^21.1.0",
"rimraf": "^2.6.1",
"typescript": "^2.4.2",
"typescript-eslint-parser": "^6.0.1"
},
"dependencies": {
"flux-standard-action": "^1.2.0",
"lodash": "^4.0.0"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}