-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.6 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.6 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
{
"name": "@nodegui/plugin-animation",
"version": "1.0.0",
"description": "A animation native plugin example for NodeGui",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc && npm run build:addon",
"postinstall": "npm run build:addon",
"build:addon": "cross-env CMAKE_BUILD_PARALLEL_LEVEL=8 cmake-js compile",
"dev": "npm run build && qode --inspect dist/demo.js",
"test": "qode ./node_modules/.bin/jest",
"lint:cpp": "clang-format -i --glob=src/cpp/**/*.[h,c]*",
"lint:ts": "tsc --noEmit && eslint './src/**/*.{ts,tsx,js,jsx}' --fix"
},
"author": "Atul R",
"license": "MIT",
"peerDependencies": {
"@nodegui/nodegui": ">=0.5.0"
},
"dependencies": {
"cmake-js": "^6.0.0",
"cross-env": "^6.0.0",
"node-addon-api": "^2.0.0"
},
"devDependencies": {
"@nodegui/nodegui": "^0.9.1",
"@nodegui/qode": "^1.0.5",
"@types/bindings": "^1.3.0",
"@types/jest": "^25.1.2",
"@types/node": "^12.12.7",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"clang-format": "^1.3.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
},
"husky": {
"hooks": {
"pre-push": "npm run lint:ts && npm run lint:cpp && npm run test"
}
}
}