-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
62 lines (62 loc) · 1.56 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
57
58
59
60
61
62
{
"name": "nf-grapher",
"// version": "The `version` field is overridden when publishing from the root!",
"version": "0.0.0",
"description": "Native Format Graph Library: Grapher",
"main": "dist/main/index.js",
"types": "dist/main/index.d.ts",
"module": "dist/module/index.js",
"jest": {
"transform": {
"^.+\\.(jsx|js|ts|tsx)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"scripts": {
"test": "NODE_ENV=test jest --verbose",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"clean": "rm -rf ./dist",
"build": "npm run clean && npm run build:main && npm run build:module",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/spotify/NFGrapher"
},
"author": "Jose Falcon <[email protected]>",
"contributors": [
{
"name": "Drew Petersen",
"email": "[email protected]"
},
{
"name": "Justin Windle",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^22.1.1",
"@types/lodash": "^4.14.106",
"@types/uuid": "^3.4.3",
"jest": "^24.7.1",
"lodash": "^4.17.5",
"ts-jest": "^24.0.2",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.9.0",
"typescript": "^2.7.2"
},
"dependencies": {
"uuid": "^3.2.1"
}
}