-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.4 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
{
"name": "slither-js",
"version": "0.8.0",
"description": "A no-frills testing framework",
"main": "./lib/Slither.js",
"scripts": {
"clean": "rm -rf coverage lib",
"build": "babel src -d lib",
"lint": "eslint .",
"flow-check": "./node_modules/.bin/flow check",
"test": "./node_modules/.bin/babel-istanbul cover spec/Slither.spec.js",
"commit": "yarn run lint && yarn run flow-check && yarn run test",
"prepublish": "yarn run clean && yarn run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/andykingking/slither-js.git"
},
"author": "Andrew King",
"license": "ISC",
"bugs": {
"url": "https://github.com/andykingking/slither-js/issues"
},
"homepage": "https://github.com/andykingking/slither-js#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-script": "^1.1.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.39.0"
},
"dependencies": {
"babel-istanbul": "^0.12.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"istanbul": "^0.4.5"
}
}