forked from Rich-Harris/simulant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 885 Bytes
/
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
{
"name": "simulant",
"description": "Simulated DOM events for automated testing",
"version": "0.2.2",
"author": {
"name": "Rich Harris"
},
"license": "MIT",
"repository": "https://github.com/Rich-Harris/simulant",
"main": "dist/simulant.umd.js",
"jsnext:main": "dist/simulant.es.js",
"scripts": {
"prepublish": "npm run lint && rm -rf dist && npm test && npm run build:es",
"build": "npm run build:umd && npm run build:es",
"build:umd": "rollup -c -f umd -o dist/simulant.umd.js",
"build:es": "rollup -c -f es6 -o dist/simulant.es.js",
"test": "node test/run.js",
"pretest": "npm run build:umd",
"lint": "eslint src"
},
"devDependencies": {
"chalk": "^1.1.3",
"eslint": "^2.8.0",
"nightmare": "^2.3.4",
"rollup": "^0.26.0",
"rollup-plugin-buble": "^0.7.0"
},
"files": [
"dist",
"README.md"
]
}