-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.27 KB
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
{
"name": "ammonite",
"version": "1.5.4",
"description": "a functional library geared towards incremental games",
"main": "dist/ammonite.js",
"scripts": {
"build": "webpack",
"prepublish": "npm run build",
"test:jest": "node node_modules/jest/bin/jest",
"test": "npm run test:jest --coverage",
"release": "npm publish && git push origin master"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Clickopolis/ammonite.git"
},
"keywords": [
"increment",
"incremental",
"games",
"functional",
"fp"
],
"author": "Emma Ramirez <ramirez.emma.g@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Clickopolis/ammonite/issues"
},
"homepage": "https://github.com/Clickopolis/ammonite#readme",
"dependencies": {
"awesome-typescript-loader": "^3.1.2",
"immutable": "^3.8.1",
"jest": "^26.0.0",
"ts-jest": "^25.3.0",
"webpack": "^4.0.0"
},
"devDependencies": {
"coveralls": "^2.12.0",
"nyc": "^10.1.2",
"typescript": "^2.2.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$"
}
}