-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "sav-mock",
"version": "0.0.2",
"description": "mock for savjs",
"main": "dist/sav-mock.cjs.js",
"module": "dist/sav-mock.es.js",
"jsnext:main": "dist/sav-mock.es.js",
"scripts": {
"build": "rollup -c",
"lint": "standard rollup.config.js test/** src/**",
"start": "watch -p \"+(test|src)/*.js\" -c \"npm run lint -- --fix && npm run build && nyc ava ./test\"",
"test": "npm run lint && npm run build && nyc ava ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/savjs/sav-mock.git"
},
"author": {
"name": "jetiny",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/savjs/sav-mock/issues"
},
"devDependencies": {
"ava": "^0.17.0",
"eslint-plugin-standard": "^2.0.1",
"expect.js": "^0.3.1",
"nyc": "^10.0.0",
"rollup": "^0.36.3",
"rollup-plugin-buble": "^0.14.0",
"standard": "^8.5.0",
"watch-cli": "^0.2.1"
},
"homepage": "https://github.com/savjs/sav-mock#readme",
"dependencies": {
"sav-util": "^0.0.8"
}
}