-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
50 lines (50 loc) · 1.06 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
{
"name": "stamp-specification",
"version": "1.6.0",
"description": "The Composables specification and example implementation",
"main": "compose.js",
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"lint": "eslint compose.js",
"test": "check-compose .",
"prepublish": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "[email protected]:stampit-org/stamp-specification.git"
},
"keywords": [
"stamp",
"composable",
"object",
"oop",
"factory"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/stampit-org/stamp-specification/issues"
},
"homepage": "https://github.com/stampit-org/stamp-specification#readme",
"devDependencies": {
"check-compose": "^5.0.0",
"eslint": "^6.4.0"
},
"dependencies": {
"lodash": "^4.17.15"
},
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018
}
}
}