-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.89 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
{
"name": "dusk",
"version": "1.0.1",
"description": "A feathery, alacritous DOM abstraction, partly based on PlainJS",
"main": "dist/dusk.min.js",
"scripts": {
"lint": "eslint src",
"pretest": "npm run build",
"test": "mocha-phantomjs -p ./node_modules/phantomjs/bin/phantomjs ./test/index.html",
"posttest": "npm run lint",
"build": "./node_modules/.bin/babel ./src/dusk.js | node ./utils/add-banner.js > ./dist/dusk.js && ./node_modules/.bin/uglifyjs ./dist/dusk.js -o ./dist/dusk.min.js -c -m --comments",
"preversion": "npm test",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/lib/*",
"/dist/*"
]
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports",
"transform-es2015-modules-umd"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjsarfatti/dusk.git"
},
"keywords": [
"alternative",
"jquery",
"lightweight",
"fast",
"tiny",
"selector",
"dom",
"abstraction",
"dusk"
],
"author": "Manuele J Sarfatti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mjsarfatti/dusk/issues"
},
"homepage": "https://github.com/mjsarfatti/dusk#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.12.0",
"babel-preset-es2015": "^6.13.2",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.0.0",
"mocha": "^3.0.2",
"mocha-phantomjs": "^4.1.0",
"phantomjs": "^2.1.7",
"uglify-js": "^2.7.0"
}
}