-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.24 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
{
"name": "js-three-dee",
"version": "1.0.0",
"description": "Anaglyphic 3d glasses photo effect for the browser using CSS3 and JS",
"main": "postcss.config.js",
"devDependencies": {
"@tweenjs/tween.js": "^17.4.0",
"@types/tween.js": "^16.9.0",
"autoprefixer": "^9.6.5",
"es6-tween": "^5.5.10",
"parcel-bundler": "^1.12.4",
"parcel-plugin-eslint": "^1.0.7",
"postcss": "^7.0.18",
"prettier": "^1.18.2",
"pug": "^2.0.4",
"sass": "^1.23.0",
"sass-lint": "^1.13.1",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build": "parcel build ./src/templates/index.pug",
"watch": "parcel watch ./src/templates/index.pug",
"serve": "parcel serve ./src/templates/index.pug",
"lint-ts": "tslint -c tslint.json 'src/scripts/*.ts'",
"lint-sass": "sass-lint -c .sass-lint.yml -v",
"lint": "npm run lint-ts && npm run lint-sass"
},
"repository": {
"type": "git",
"url": "[email protected]:fivenine/js-three-dee.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"tween.js": "^16.6.0"
}
}