-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.43 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
{
"name": "react-mapping",
"version": "0.0.1",
"description": "A react library for projection mapping",
"main": "build/index.js",
"typings": "build/index.d.ts",
"scripts": {
"clean": "rm -rf ./build",
"build": "tsc",
"build:watch": "tsc -w",
"prepublishOnly": "npm run clean && npm run build",
"version": "npm run build",
"lint": "tslint 'src/**/*.{ts,tsx}'",
"postversion": "git push && git push --tags",
"prettify": "prettier --write src/*.ts src/*.tsx src/**/*.ts src/**/*.tsx"
},
"author": "Alexandre Rieux",
"license": "ISC",
"devDependencies": {
"@types/node": "^8.0.47",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.19",
"prettier": "^1.7.4",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-microsoft-contrib": "^5.0.1",
"tslint-react": "^3.2.0",
"typescript": "^2.6.1"
},
"dependencies": {
"numeric": "^1.2.6",
"prop-types": "^15.6.0",
"react": "^16.0.0"
},
"files": [
"build",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alex3165/react-mapping.git"
},
"bugs": {
"url": "https://github.com/alex3165/react-mapping/issues"
},
"homepage": "https://github.com/alex3165/react-mapping#readme",
"keywords": [
"projection mapping",
"mapping",
"video mapping",
"react",
"component",
"react-component",
"3d transform",
"matrix3d"
]
}