-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.1 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
{
"name": "memoryjs",
"version": "1.0.0",
"description": "memoryJS is a dependecy free, ES6 compliant JS library that implements the concept of pointers in JavaScript",
"main": "memory.min.js",
"files": [
"memory.min.js",
"memory.secret.min.js"
],
"directories": {
"example": "examples"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"standard": "standard --fix",
"validate": "npm run standard && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unsuitable001/memoryJS.git"
},
"keywords": [
"memoryjs"
],
"author": "unsuitable001",
"license": "MIT",
"bugs": {
"url": "https://github.com/unsuitable001/memoryJS/issues"
},
"homepage": "https://github.com/unsuitable001/memoryJS#readme",
"devDependencies": {
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"standard": "^14.3.1"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "npm run validate"
}
}
}