This repository has been archived by the owner on Jun 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.64 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
53
54
55
56
57
58
{
"name": "saul",
"version": "0.3.1",
"description": "An extensible dynamic unit test generator.",
"main": "lib/index.js",
"scripts": {
"unit-tests": "nyc mocha --compilers js:babel-register src/**/*.test.js node_modules/.bin/saul",
"test": "node_modules/.bin/eslint src/**/*.js && yarn unit-tests",
"start": "node ./lib/index.js",
"build": "babel src --out-dir lib",
"watch": "babel --watch src --out-dir lib",
"prepublish": "yarn run build",
"self-test": "yarn build && rm -rf node_modules/saul/lib && cp -R lib node_modules/saul/ && yarn unit-tests"
},
"author": "Nadeesha Cabral <[email protected]>",
"license": "MIT",
"dependencies": {
"@emmetio/expand-abbreviation": "^0.5.6",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"enzyme": "^2.8.2",
"flow-remove-types": "^1.2.1",
"glob": "^7.1.2",
"lodash": "^4.17.11",
"react": "^15.5.4",
"saul": "0.3.0",
"sinon": "^2.2.0",
"unescape": "^0.2.0"
},
"bin": {
"saul": "./lib/index.js"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-env": "^1.4.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"eslint": "^3.19.0",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.46.0",
"mocha": "^3.4.1",
"nyc": "^10.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/nadeesha/saul"
},
"nyc": {
"include": [
"src/**/*.js"
]
}
}