-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "occamsrazor",
"version": "9.1.9",
"description": "A plugin system for Javascript",
"main": "index.js",
"scripts": {
"test": "mocha",
"watch": "npm run test -- -w",
"lint": "eslint --fix --ext .js ./ ./test",
"precommit": "npm run lint",
"prepush": "npm run test"
},
"repository": {
"type": "git",
"url": "git://github.com/sithmel/occamsrazor.js.git"
},
"keywords": [
"plugins",
"components",
"registry",
"adapters"
],
"author": "Maurizio Lupo <[email protected]>",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"mocha": "^5.0.0",
"occamsrazor-match": "^4.1.0"
},
"dependencies": {
"occamsrazor-validator": "^9.0.0",
"setimmediate": "^1.0.5",
"stable": "^0.1.8"
}
}