forked from yoannmoinet/nipplejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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
{
"version": "0.9.0",
"name": "@geostarters/nipplejs",
"description": "A virtual joystick for touch capable interfaces",
"author": "Yoann Moinet <[email protected]> (https://yoannmoi.net)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yoannmoinet/nipplejs.git"
},
"bugs": {
"url": "https://github.com/yoannmoinet/nipplejs/issues"
},
"files": [
"dist/*",
"src/*",
"types/*"
],
"homepage": "https://github.com/yoannmoinet/nipplejs",
"main": "./dist/nipplejs.js",
"browser": "./dist/nipplejs.js",
"module": "./src/index.js",
"types": "./types/index.d.ts",
"directories": {
"lib": "src",
"test": "test",
"example": "example"
},
"scripts": {
"postversion": "npm run changelog",
"prepare": "cross-env NODE_ENV=production npm run build",
"build": "webpack --config webpack.config.js",
"build:dev": "webpack-dev-server --config webpack.config.js",
"test": "casperjs test ./test/nipplejs.casper.js",
"changelog": "node ./bin/changelog.js",
"start": "npm run build:dev -- --progress --watch",
"toc": "markdown-toc -i README.md",
"copyGh": "node ./bin/copyToGhPages.js"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"babel-loader": "8.0.6",
"babel-plugin-add-module-exports": "1.0.2",
"casperjs": "1.1.4",
"concat-cli": "4.0.0",
"conventional-changelog": "1.1.0",
"cross-env": "^7.0.0",
"eslint": "5.10.0",
"eslint-loader": "2.2.1",
"expect.js": "0.3.1",
"markdown-toc": "1.2.0",
"mocha": "5.2.0",
"phantomjs-prebuilt": "2.1.16",
"webpack": "4.39.2",
"webpack-cli": "3.3.7",
"webpack-dev-server": "3.8.0"
}
}