forked from phenax/pattern-lock-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.33 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
{
"name": "@phenax/pattern-lock-js",
"version": "0.1.2",
"description": "A pattern lock library for the web.",
"main": "index.js",
"repository": "https://github.com/phenax/pattern-lock-js.git",
"homepage": "https://phenax.github.io/pattern-lock-js",
"author": "Akshay Nair <[email protected]>",
"scripts": {
"build": "concurrently 'npm run build:package' 'npm run build:example'",
"watch": "concurrently 'npm run watch:package' 'npm run watch:example'",
"build:package": "babel src -d build --copy-files",
"watch:package": "npm run build:package -- --watch",
"build:example": "webpack -p",
"watch:example": "webpack -w"
},
"license": "Apache 2.0",
"devDependencies": {
"@babel/cli": "^7.0.0-rc.1",
"@babel/core": "^7.0.0-rc.1",
"@babel/plugin-proposal-class-properties": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/preset-react": "^7.0.0-rc.1",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.0-beta.4",
"clipboard": "^2.0.1",
"concurrently": "^3.6.1",
"eslint": "^5.4.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"hyperapp": "^1.2.9",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
}
}