-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "@most/fluent",
"version": "0.1.0",
"main": "dist/index.js",
"module": "dist/index.es.js",
"author": "Brian Cavalier <[email protected]>",
"license": "MIT",
"devDependencies": {
"@briancavalier/assert": "^3.4.0",
"@most/core": "^1.5.0",
"@most/scheduler": "^1.0.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"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.39.1",
"flow-bin": "^0.59.0",
"flow-copy-source": "^1.2.1",
"mocha": "^4.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^11.3.0",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^3.0.2",
"snazzy": "^7.0.0",
"standard": "^10.0.3"
},
"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",
"plugins": [
"flowtype"
]
},
"dependencies": {
"@most/types": "^1.0.2"
}
}