-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.33 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
{
"name": "sinergia",
"version": "0.1.0",
"description": "Cooperative expensive tasks via ES6 generators",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc && tsc --declaration false --module UMD --outDir ./lib/umd",
"clean": "rimraf lib",
"lint": "tslint \"./index.ts\"",
"test": "jest",
"prepublish": "npm run clean && npm run build",
"prepush": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jiayihu/sinergia.git"
},
"keywords": [
"cooperative",
"generators",
"async",
"requestAnimationFrame"
],
"author": "Giovanni Jiayi Hu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jiayihu/sinergia/issues"
},
"homepage": "https://github.com/jiayihu/sinergia#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "^19.2.2",
"co": "^4.6.0",
"husky": "^0.13.3",
"jest": "^19.0.2",
"rimraf": "^2.6.1",
"ts-jest": "^19.0.8",
"tslint": "^5.0.0",
"typescript": "^2.3.2"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(test/.*\\.spec\\.(ts|js))$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}