-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.39 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
{
"name": "@jamesdphillips/ansi-escape",
"version": "1.0.0",
"description": "No bells, no whistles just parsing of ANSI escape sequences.",
"files": [
"lib/**/*.@(js|flow)"
],
"main": "./lib",
"sideEffects": false,
"repository": "https://www.github.com/jamesdphillips/ansi-escape ",
"author": "James Phillips <[email protected]>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@sensuapp/eslint-config": "^1.4.0",
"@sensuapp/eslint-config-flow": "^1.4.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"eslint": "^5.7.0",
"eslint-plugin-import": "^2.9.0",
"flow-bin": "^0.83.0",
"flow-copy-source": "^2.0.2",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"regenerator-runtime": "^0.12.1",
"rimraf": "^2.6.2",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-node-resolve": "^3.4.0"
},
"scripts": {
"build": "yarn build:lib && yarn build:flow",
"build:lib": "npx rollup src/index.js --file lib/index.js --config",
"build:flow": "npx flow-copy-source -v -i '**/*test*' src lib",
"clean": "npx rimraf lib",
"test": "yarn test:lint && yarn test:flow && yarn test:spec",
"test:flow": "npx flow",
"test:spec": "npx jest",
"test:lint": "npx eslint src"
}
}