-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.93 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "preact-token-input",
"amdName": "preactTokenInput",
"version": "0.3.0",
"description": "A text field that tokenizes input, for things like tags.",
"main": "dist/preact-token-input.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "eslint {src,test} && npm run build && mocha --compilers js:babel-register test/_setup.js test/**/*.js",
"prepublish": "npm run build",
"release": "npm run build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h"
}
]
]
},
"keywords": [
"preact",
"token",
"input",
"tags"
],
"author": "Jason Miller <jason@developit.ca>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/developit/preact-token-input.git"
},
"bugs": {
"url": "https://github.com/developit/preact-token-input/issues"
},
"homepage": "https://github.com/developit/preact-token-input",
"peerDependencies": {
"preact": "*"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-plugin-transform-es2015-classes": "^6.9.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2015-rollup": "^1.2.0",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"eslint": "^3.3.0",
"mkdirp": "^0.5.1",
"mocha": "^3.0.2",
"postcss-discard-comments": "^2.0.4",
"preact": "^5.6.0",
"preact-jsx-chai": "^2.1.0",
"rollup": "^0.34.8",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^3.3.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-npm": "^2.0.0",
"rollup-plugin-postcss": "^0.1.1",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"tags-input": "^1.1.1"
}
}