-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.68 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
{
"name": "@prodo-ai/js-timing",
"version": "1.0.4",
"description": "JS utilities for timing",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"repository": "git@github.com:prodo-ai/js-timing.git",
"author": "Prodo Tech Ltd.",
"license": "UNLICENSED",
"private": false,
"scripts": {
"eslint": "eslint src test --color && echo 'No errors.'",
"flow": "flow status",
"prepack": "npm run prepack:babel && npm run prepack:flow && npm run prepack:ts",
"prepack:babel": "babel src/ -d lib",
"prepack:flow": "find src -name *.js -type f | cut -d'/' -f2 | xargs -I '{}' cp src/{} lib/{}.flow",
"prepack:ts": "cp index.d.ts lib/",
"test": "npm run test:ava && npm run test:eslint && npm run test:flow",
"test:ava": "ava --color --verbose --timeout=3000 test",
"test:eslint": "npm run eslint",
"test:flow": "npm run flow"
},
"dependencies": {
"babel-runtime": "^6.23.0"
},
"devDependencies": {
"@prodo-ai/eslint-plugin": "^1.0.0",
"ava": "^0.23.0",
"babel-cli": "^6.24.0",
"babel-core": "^6.23.1",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-async-generator-functions": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.22.0",
"eslint": "^v5.0.0-alpha.2",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-prettier": "^2.6.0",
"flow-bin": "^0.71.0",
"prettier": "^1.12.1"
},
"ava": {
"require": [
"babel-polyfill",
"babel-register"
],
"babel": {
"extends": ".babelrc"
}
}
}