-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 953 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 953 Bytes
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
{
"name": "flushable",
"version": "1.0.0",
"description": "A flushable timeout function",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"repository": "git@github.com:petegleeson/flushable.git",
"author": "Peter Gleeson <petergleeson.dev@gmail.com>",
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/jest",
"build": "rm -rf ./dist && node_modules/rollup/bin/rollup -c"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"devDependencies": {
"@babel/core": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/preset-flow": "^7.0.0-rc.1",
"babel-core": "^7.0.0-0",
"babel-jest": "^23.4.2",
"flow-bin": "^0.78.0",
"flow-typed": "^2.5.1",
"jest": "^23.4.2",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^4.0.0-beta.8",
"rollup-plugin-execute": "^1.0.0"
}
}