-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.35 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": "@most/xhr",
"version": "0.1.0",
"description": "XHR with @most/core",
"main": "dist/index.js",
"module": "dist/index.es.js",
"author": "brian@briancavalier.com",
"license": "MIT",
"devDependencies": {
"@briancavalier/assert": "^3.4.0",
"@most/core": "^1.3.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"eslint-plugin-flowtype": "^2.50.0",
"flow-bin": "^0.76.0",
"flow-copy-source": "^2.0.1",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"nyc": "^12.0.2",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"snazzy": "^7.1.1",
"standard": "^11.0.1"
},
"dependencies": {
"@most/scheduler": "^1.2.0",
"@most/types": "^1.0.0"
},
"scripts": {
"build": "rollup -c && flow-copy-source -i '*.test.js' src dist",
"test:lint": "standard --fix --verbose 'src/**/*.js' | snazzy",
"test:typecheck": "flow check",
"test:unit": "nyc mocha -r babel-register src/**/*.test.js",
"test": "run-p test:lint test:typecheck test:unit",
"prepare": "run-s build"
},
"babel": {
"presets": [
"env",
"flow"
]
},
"standard": {
"parser": "babel-eslint",
"plugings": [
"flowtype"
]
}
}